Passed
Branch release/1.5.0 (26813a)
by vincent
04:58
created
src/Items/Company.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 
74 74
     public function getMovies()
75 75
     {
76
-        $data = $this->tmdb->sendRequest(new HttpClient(new \GuzzleHttp\Client()), '/company/'.(int) $this->id.'/movies', null, $this->params);
76
+        $data = $this->tmdb->sendRequest(new HttpClient(new \GuzzleHttp\Client()), '/company/' . (int) $this->id . '/movies', null, $this->params);
77 77
 
78 78
         foreach ($data->results as $m)
79 79
         {
Please login to merge, or discard this patch.
src/Items/TVEpisode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
     public function getCrew()
42 42
     {
43
-        if (! empty($this->data->crew)) {
43
+        if (!empty($this->data->crew)) {
44 44
             foreach ($this->data->crew as $crew) {
45 45
                 $crew->gender = null;
46 46
 
Please login to merge, or discard this patch.
src/Items/Credit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function __construct(Tmdb $tmdb, $movie_id, array $options = array())
21 21
     {
22
-        parent::__construct($tmdb, '/credits', $options, 'movie/'.$movie_id);
22
+        parent::__construct($tmdb, '/credits', $options, 'movie/' . $movie_id);
23 23
     }
24 24
 
25 25
     public function getCrew()
Please login to merge, or discard this patch.