Passed
Branch account (184271)
by vincent
02:51
created
src/VfacTmdb/Results/Image.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Results/TVShow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Results/Movie.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Results/PeopleMovieCast.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/VfacTmdb/Catalogs/Jobs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/VfacTmdb/Catalogs/Genres.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Auth.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/VfacTmdb/lib/Guzzle/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
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
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Account/Rated.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.