Skip to content

Commit

Permalink
Fixing README examples
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfzdotnet committed Feb 8, 2014
1 parent b3705b2 commit 991e521
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ $client = new \Tmdb\Client($token, null, true);
Then we do some work on it:

```php
$images = $client->getMoviesApi()->getMovie(550);
$movie = $client->getMoviesApi()->getMovie(550);
```

If you want to provide any other query arguments.

```php
$images = $client->getMoviesApi()->getMovie(550, array('language' => 'en'));
$movie = $client->getMoviesApi()->getMovie(550, array('language' => 'en'));
```

Model Usage
Expand Down

0 comments on commit 991e521

Please sign in to comment.