@@ -65,7 +65,7 @@ |
||
65 | 65 | */ |
66 | 66 | public function getBuilder(string $builder, array $args = []) : LoggerBuilderInterface |
67 | 67 | { |
68 | - $class = "\\VfacTmdb\\Factory\\Builder\\{$builder}Builder"; |
|
68 | + $class = "\\VfacTmdb\\Factory\\Builder\\{$builder}builder"; |
|
69 | 69 | |
70 | 70 | $reflection = new \ReflectionClass($class); |
71 | 71 |
@@ -66,7 +66,7 @@ |
||
66 | 66 | { |
67 | 67 | $this->tmdb = $tmdb; |
68 | 68 | $this->logger = $tmdb->getLogger(); |
69 | - $this->data = $this->tmdb->getRequest('tv/' . $tv_id . '/season/'.$season_number.'/credits'); |
|
69 | + $this->data = $this->tmdb->getRequest('tv/' . $tv_id . '/season/' . $season_number . '/credits'); |
|
70 | 70 | $this->options = $options; |
71 | 71 | } |
72 | 72 |
@@ -66,7 +66,7 @@ |
||
66 | 66 | { |
67 | 67 | $this->tmdb = $tmdb; |
68 | 68 | $this->logger = $tmdb->getLogger(); |
69 | - $this->data = $this->tmdb->getRequest('tv/' . $tv_id . '/season/'.$season_number.'/episode/'.$episode_number.'/credits'); |
|
69 | + $this->data = $this->tmdb->getRequest('tv/' . $tv_id . '/season/' . $season_number . '/episode/' . $episode_number . '/credits'); |
|
70 | 70 | $this->options = $options; |
71 | 71 | } |
72 | 72 |