@@ -1,4 +1,4 @@ |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $this->tmdb = $tmdb; |
| 42 | 42 | $this->logger = $tmdb->getLogger(); |
| 43 | 43 | $this->params = $this->tmdb->checkOptions($options); |
| 44 | - $this->data = $this->tmdb->getRequest('person/' . $people_id.'/tv_credits', $this->params); |
|
| 44 | + $this->data = $this->tmdb->getRequest('person/' . $people_id . '/tv_credits', $this->params); |
|
| 45 | 45 | } catch (TmdbException $ex) { |
| 46 | 46 | throw $ex; |
| 47 | 47 | } |
@@ -1,4 +1,4 @@ |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | |
| 3 | 3 | /** |
| 4 | 4 | * This file is part of the Tmdb package. |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $this->tmdb = $tmdb; |
| 42 | 42 | $this->logger = $tmdb->getLogger(); |
| 43 | 43 | $this->params = $this->tmdb->checkOptions($options); |
| 44 | - $this->data = $this->tmdb->getRequest('person/' . $people_id.'/movie_credits', $this->params); |
|
| 44 | + $this->data = $this->tmdb->getRequest('person/' . $people_id . '/movie_credits', $this->params); |
|
| 45 | 45 | } catch (TmdbException $ex) { |
| 46 | 46 | throw $ex; |
| 47 | 47 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function __construct(TmdbInterface $tmdb, int $tv_id, int $season_number, int $episode_number, array $options = array()) |
| 60 | 60 | { |
| 61 | - parent::__construct($tmdb, $episode_number, $options, 'tv/' . $tv_id . '/season/' . $season_number.'/episode'); |
|
| 61 | + parent::__construct($tmdb, $episode_number, $options, 'tv/' . $tv_id . '/season/' . $season_number . '/episode'); |
|
| 62 | 62 | |
| 63 | 63 | $this->season_number = $season_number; |
| 64 | 64 | $this->episode_number = $episode_number; |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * Session Id |
| 54 | 54 | * @var string |
| 55 | 55 | */ |
| 56 | - private $session_id = null; |
|
| 56 | + private $session_id = null; |
|
| 57 | 57 | |
| 58 | 58 | /** |
| 59 | 59 | * Constructor |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function getMovies() : \Generator |
| 37 | 37 | { |
| 38 | - $response = $this->tmdb->getRequest('account/'.$this->account_id.'/rated/movies', $this->options); |
|
| 38 | + $response = $this->tmdb->getRequest('account/' . $this->account_id . '/rated/movies', $this->options); |
|
| 39 | 39 | |
| 40 | 40 | $this->page = (int) $response->page; |
| 41 | 41 | $this->total_pages = (int) $response->total_pages; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function getTVShows() : \Generator |
| 52 | 52 | { |
| 53 | - $response = $this->tmdb->getRequest('account/'.$this->account_id.'/rated/tv', $this->options); |
|
| 53 | + $response = $this->tmdb->getRequest('account/' . $this->account_id . '/rated/tv', $this->options); |
|
| 54 | 54 | |
| 55 | 55 | $this->page = (int) $response->page; |
| 56 | 56 | $this->total_pages = (int) $response->total_pages; |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | public function getTVEpisodes() : \Generator |
| 67 | 67 | { |
| 68 | - $response = $this->tmdb->getRequest('account/'.$this->account_id.'/rated/tv/episodes', $this->options); |
|
| 68 | + $response = $this->tmdb->getRequest('account/' . $this->account_id . '/rated/tv/episodes', $this->options); |
|
| 69 | 69 | |
| 70 | 70 | $this->page = (int) $response->page; |
| 71 | 71 | $this->total_pages = (int) $response->total_pages; |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | public function addMovieRate(int $movie_id, float $rate) : Rated |
| 84 | 84 | { |
| 85 | - return $this->addRate('movie/'.$movie_id.'/rating', $rate); |
|
| 85 | + return $this->addRate('movie/' . $movie_id . '/rating', $rate); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | public function removeMovieRate(int $movie_id) : Rated |
| 94 | 94 | { |
| 95 | - return $this->removeRate('movie/'.$movie_id.'/rating'); |
|
| 95 | + return $this->removeRate('movie/' . $movie_id . '/rating'); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | public function addTVShowRate(int $tv_id, float $rate) : Rated |
| 105 | 105 | { |
| 106 | - return $this->addRate('tv/'.$tv_id.'/rating', $rate); |
|
| 106 | + return $this->addRate('tv/' . $tv_id . '/rating', $rate); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function removeTVShowRate(int $tv_id) : Rated |
| 115 | 115 | { |
| 116 | - return $this->removeRate('tv/'.$tv_id.'/rating'); |
|
| 116 | + return $this->removeRate('tv/' . $tv_id . '/rating'); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | public function addTVShowEpisodeRate(int $tv_id, int $season_number, int $episode_number, float $rate) : Rated |
| 128 | 128 | { |
| 129 | - return $this->addRate('tv/'.$tv_id.'/season/'.$season_number.'/episode/'.$episode_number.'/rating', $rate); |
|
| 129 | + return $this->addRate('tv/' . $tv_id . '/season/' . $season_number . '/episode/' . $episode_number . '/rating', $rate); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | */ |
| 139 | 139 | public function removeTVShowEpisodeRate(int $tv_id, int $season_number, int $episode_number) : Rated |
| 140 | 140 | { |
| 141 | - return $this->removeRate('tv/'.$tv_id.'/season/'.$season_number.'/episode/'.$episode_number.'/rating'); |
|
| 141 | + return $this->removeRate('tv/' . $tv_id . '/season/' . $season_number . '/episode/' . $episode_number . '/rating'); |
|
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | /** |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function getMovies() : \Generator |
| 37 | 37 | { |
| 38 | - $response = $this->tmdb->getRequest('account/'.$this->account_id.'/watchlist/movies', $this->options); |
|
| 38 | + $response = $this->tmdb->getRequest('account/' . $this->account_id . '/watchlist/movies', $this->options); |
|
| 39 | 39 | |
| 40 | 40 | $this->page = (int) $response->page; |
| 41 | 41 | $this->total_pages = (int) $response->total_pages; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function getTVShows() : \Generator |
| 52 | 52 | { |
| 53 | - $response = $this->tmdb->getRequest('account/'.$this->account_id.'/watchlist/tv', $this->options); |
|
| 53 | + $response = $this->tmdb->getRequest('account/' . $this->account_id . '/watchlist/tv', $this->options); |
|
| 54 | 54 | |
| 55 | 55 | $this->page = (int) $response->page; |
| 56 | 56 | $this->total_pages = (int) $response->total_pages; |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | $params['media_id'] = $media_id; |
| 75 | 75 | $params['watchlist'] = $watchlist; |
| 76 | 76 | |
| 77 | - $this->tmdb->postRequest('account/'.$this->account_id.'/watchlist', $this->options, $params); |
|
| 77 | + $this->tmdb->postRequest('account/' . $this->account_id . '/watchlist', $this->options, $params); |
|
| 78 | 78 | |
| 79 | 79 | return $this; |
| 80 | 80 | } catch (TmdbException $e) { |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * This file is part of the Tmdb package. |
| 4 | 4 | * |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $params['media_id'] = $media_id; |
| 63 | 63 | $params['favorite'] = $favorite; |
| 64 | 64 | |
| 65 | - $this->tmdb->postRequest('account/'.$this->account_id.'/favorite', $this->options, $params); |
|
| 65 | + $this->tmdb->postRequest('account/' . $this->account_id . '/favorite', $this->options, $params); |
|
| 66 | 66 | |
| 67 | 67 | return $this; |
| 68 | 68 | } catch (TmdbException $e) { |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | private function getAccountItems(string $item, string $result_class) : \Generator |
| 120 | 120 | { |
| 121 | - $response = $this->tmdb->getRequest('account/'.$this->account_id.'/favorite/'.$item, $this->options); |
|
| 121 | + $response = $this->tmdb->getRequest('account/' . $this->account_id . '/favorite/' . $item, $this->options); |
|
| 122 | 122 | |
| 123 | 123 | $this->page = (int) $response->page; |
| 124 | 124 | $this->total_pages = (int) $response->total_pages; |