Passed
Pull Request — master (#3)
by
unknown
01:53
created
src/TVDB.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -212,27 +212,27 @@
 block discarded – undo
212 212
     }
213 213
 
214 214
     /**
215
-	 * Retrieves Updates From Minutes Ago (max 7 days in the past)
216
-	 *
217
-	 * @param integer $from_minutes_ago
218
-	 * @throws Exceptions\TVDBUnauthorizedException
219
-	 * @throws Exceptions\TVDBNotFoundException
220
-	 *
221
-	 * @return UpdateCollection
222
-	 */
223
-	public static function getUpdates($from_minutes_ago) {
224
-		$from_time = time() - ($from_minutes_ago * 60);
225
-		$response = self::request([
226
-			'method'    => 'GET',
227
-			'url'       => self::apiURL('/updated/query?fromTime=' . $from_time),
228
-			'auth'      => true,
229
-			'name'      => 'get_episode'
230
-		]);
231
-
232
-		if(!$response->isSuccessful()) $response->throwException();
233
-
234
-		return new Updates($response->json()->data);
235
-	}
215
+     * Retrieves Updates From Minutes Ago (max 7 days in the past)
216
+     *
217
+     * @param integer $from_minutes_ago
218
+     * @throws Exceptions\TVDBUnauthorizedException
219
+     * @throws Exceptions\TVDBNotFoundException
220
+     *
221
+     * @return UpdateCollection
222
+     */
223
+    public static function getUpdates($from_minutes_ago) {
224
+        $from_time = time() - ($from_minutes_ago * 60);
225
+        $response = self::request([
226
+            'method'    => 'GET',
227
+            'url'       => self::apiURL('/updated/query?fromTime=' . $from_time),
228
+            'auth'      => true,
229
+            'name'      => 'get_episode'
230
+        ]);
231
+
232
+        if(!$response->isSuccessful()) $response->throwException();
233
+
234
+        return new Updates($response->json()->data);
235
+    }
236 236
     
237 237
     /**
238 238
      * Returns a valid TVDB token to use for authentication
Please login to merge, or discard this patch.
Braces   +50 added lines, -24 removed lines patch added patch discarded remove patch
@@ -52,13 +52,18 @@  discard block
 block discarded – undo
52 52
         // Format search query
53 53
         $query = [];
54 54
 
55
-        if((is_array($options) && isset($options['title'])))
56
-            $query['name'] = $options['title'];
57
-        else if(is_string($options))
58
-            $query['name'] = $options;
55
+        if((is_array($options) && isset($options['title']))) {
56
+                    $query['name'] = $options['title'];
57
+        } else if(is_string($options)) {
58
+                    $query['name'] = $options;
59
+        }
59 60
 
60
-        if(is_array($options) && isset($options['imdbId'])) $query['imdbId'] = $options['imdbId'];
61
-        if(is_array($options) && isset($options['zap2itId'])) $query['zap2itId'] = $options['zap2itId'];
61
+        if(is_array($options) && isset($options['imdbId'])) {
62
+            $query['imdbId'] = $options['imdbId'];
63
+        }
64
+        if(is_array($options) && isset($options['zap2itId'])) {
65
+            $query['zap2itId'] = $options['zap2itId'];
66
+        }
62 67
 
63 68
         $response = self::request([
64 69
             'method'    => 'GET',
@@ -68,13 +73,16 @@  discard block
 block discarded – undo
68 73
             'name'      => 'search_series'
69 74
         ]);
70 75
 
71
-        if(!$response->isSuccessful()) $response->throwException();
76
+        if(!$response->isSuccessful()) {
77
+            $response->throwException();
78
+        }
72 79
 
73 80
         $responseData = (isset($response->json()->data)) ? $response->json()->data : [];
74 81
         $series = [];
75 82
 
76
-        foreach($responseData as $seriesData)
77
-            $series[] = new Series($seriesData);
83
+        foreach($responseData as $seriesData) {
84
+                    $series[] = new Series($seriesData);
85
+        }
78 86
 
79 87
         return $series;
80 88
     }
@@ -96,7 +104,9 @@  discard block
 block discarded – undo
96 104
             'name'      => 'get_series'
97 105
         ]);
98 106
 
99
-        if(!$response->isSuccessful()) $response->throwException();
107
+        if(!$response->isSuccessful()) {
108
+            $response->throwException();
109
+        }
100 110
 
101 111
         return new Series($response->json()->data);
102 112
     }
@@ -118,12 +128,15 @@  discard block
 block discarded – undo
118 128
             'name'      => 'get_series_actors'
119 129
         ]);
120 130
 
121
-        if(!$response->isSuccessful()) $response->throwException();
131
+        if(!$response->isSuccessful()) {
132
+            $response->throwException();
133
+        }
122 134
 
123 135
         $returnData = [];
124 136
 
125
-        foreach($response->json()->data as $actorData)
126
-            $returnData[] = new Actor($actorData);
137
+        foreach($response->json()->data as $actorData) {
138
+                    $returnData[] = new Actor($actorData);
139
+        }
127 140
 
128 141
         return $returnData;
129 142
     }
@@ -146,16 +159,19 @@  discard block
 block discarded – undo
146 159
             'name'      => 'get_series_images'
147 160
         ]);
148 161
 
149
-        if(!$response->isSuccessful()) $response->throwException();
162
+        if(!$response->isSuccessful()) {
163
+            $response->throwException();
164
+        }
150 165
 
151 166
         $returnData = [];
152 167
 
153
-        foreach($response->json()->data as $imageData)
154
-            $returnData[] = [
168
+        foreach($response->json()->data as $imageData) {
169
+                    $returnData[] = [
155 170
                 'resolution'    => $imageData->resolution,
156 171
                 'image'         => self::IMAGE_URL_PREFIX . $imageData->fileName,
157 172
                 'image_thumb'   => self::IMAGE_URL_PREFIX . $imageData->thumbnail
158 173
             ];
174
+        }
159 175
 
160 176
         return $returnData;
161 177
     }
@@ -179,12 +195,15 @@  discard block
 block discarded – undo
179 195
             'name'      => 'get_series_episodes'
180 196
         ]);
181 197
 
182
-        if(!$response->isSuccessful()) $response->throwException();
198
+        if(!$response->isSuccessful()) {
199
+            $response->throwException();
200
+        }
183 201
 
184 202
         $returnData = [];
185 203
 
186
-        foreach($response->json()->data as $episodeData)
187
-            $returnData[] = new Episode($episodeData);
204
+        foreach($response->json()->data as $episodeData) {
205
+                    $returnData[] = new Episode($episodeData);
206
+        }
188 207
 
189 208
         return new EpisodeCollection($page, $returnData);
190 209
     }
@@ -206,7 +225,9 @@  discard block
 block discarded – undo
206 225
             'name'      => 'get_episode'
207 226
         ]);
208 227
 
209
-        if(!$response->isSuccessful()) $response->throwException();
228
+        if(!$response->isSuccessful()) {
229
+            $response->throwException();
230
+        }
210 231
 
211 232
         return new Episode($response->json()->data);
212 233
     }
@@ -229,7 +250,9 @@  discard block
 block discarded – undo
229 250
 			'name'      => 'get_episode'
230 251
 		]);
231 252
 
232
-		if(!$response->isSuccessful()) $response->throwException();
253
+		if(!$response->isSuccessful()) {
254
+		    $response->throwException();
255
+		}
233 256
 
234 257
 		return new Updates($response->json()->data);
235 258
 	}
@@ -263,7 +286,9 @@  discard block
 block discarded – undo
263 286
         ]);
264 287
 
265 288
         // Login may have failed
266
-        if(!$loginResponse->isSuccessful()) $loginResponse->throwException();
289
+        if(!$loginResponse->isSuccessful()) {
290
+            $loginResponse->throwException();
291
+        }
267 292
 
268 293
         // Successfully logged in
269 294
         $token = $loginResponse->json()->token;
@@ -286,8 +311,9 @@  discard block
 block discarded – undo
286 311
         $url = $options['url'];
287 312
 
288 313
         // Add URL query params
289
-        if(isset($options['query']))
290
-            $url .= '?' . http_build_query($options['query']);
314
+        if(isset($options['query'])) {
315
+                    $url .= '?' . http_build_query($options['query']);
316
+        }
291 317
 
292 318
         // Initialize handle
293 319
         $curlHandle = curl_init($url);
Please login to merge, or discard this patch.
src/Updates.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 
7 7
 class Updates
8 8
 {
9
-	public $updates = [];
9
+    public $updates = [];
10 10
 
11
-	public function __construct( $data )
12
-	{
13
-		foreach ( $data as $show_update ) {
14
-			$this->updates[ $show_update->id ] = Carbon::parse( $show_update->lastUpdated );
15
-		}
16
-	}
11
+    public function __construct( $data )
12
+    {
13
+        foreach ( $data as $show_update ) {
14
+            $this->updates[ $show_update->id ] = Carbon::parse( $show_update->lastUpdated );
15
+        }
16
+    }
17 17
 }
Please login to merge, or discard this patch.