1<?php
2/**
3 * This file is part of the Tmdb PHP API created by Michael Roterman.
4 *
5 * For the full copyright and license information, please view the LICENSE
6 * file that was distributed with this source code.
7 *
8 * @package Tmdb
9 * @author Michael Roterman <michael@wtfz.net>
10 * @copyright (c) 2013, Michael Roterman
11 * @version 0.0.1
12 */
13namespace Tmdb\Api;
14
15/**
16 * Class Reviews
17 * @package Tmdb\Api
18 * @see http://docs.themoviedb.apiary.io/#reviews
19 */
20class Reviews extends AbstractApi
21{
22    /**
23     * Get the full details of a review by ID.
24     *
25     * @param $review_id
26     * @param  array $parameters
27     * @param  array $headers
28     * @return mixed
29     */
30    public function getReview($review_id, array $parameters = [], array $headers = [])
31    {
32        return $this->get('review/' . $review_id, $parameters, $headers);
33    }
34}
35