Passed
Push — master ( ec36ee...74df59 )
by Darko
10:08 queued 04:04
created
Blacklight/processing/Videos.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         if (\in_array($siteColumn, self::$sites, false)) {
101 101
             $result = Video::query()->where($siteColumn, $siteID)->first();
102 102
         }
103
-        if (! empty($result)) {
103
+        if (!empty($result)) {
104 104
             $query = $result->toArray();
105 105
 
106 106
             return $query['id'];
@@ -180,13 +180,13 @@  discard block
 block discarded – undo
180 180
     public function getTitleExact(string $title, int $type, int $source = 0): int
181 181
     {
182 182
         $return = 0;
183
-        if (! empty($title)) {
183
+        if (!empty($title)) {
184 184
             $sql = Video::query()->where(['title' => $title, 'type' => $type]);
185 185
             if ($source > 0) {
186 186
                 $sql->where('source', $source);
187 187
             }
188 188
             $query = $sql->first();
189
-            if (! empty($query)) {
189
+            if (!empty($query)) {
190 190
                 $result = $query->toArray();
191 191
                 $return = $result['id'];
192 192
             }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                     $sql->where('videos.source', $source);
200 200
                 }
201 201
                 $query = $sql->first();
202
-                if (! empty($query)) {
202
+                if (!empty($query)) {
203 203
                     $result = $query->toArray();
204 204
                     $return = $result['id'];
205 205
                 }
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     {
217 217
         $return = 0;
218 218
 
219
-        if (! empty($title)) {
219
+        if (!empty($title)) {
220 220
             $sql = Video::query()
221 221
                 ->where('title', 'like', rtrim($title, '%'))
222 222
                 ->where('type', $type);
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
                 $sql->where('source', $source);
225 225
             }
226 226
             $query = $sql->first();
227
-            if (! empty($query)) {
227
+            if (!empty($query)) {
228 228
                 $result = $query->toArray();
229 229
                 $return = $result['id'];
230 230
             }
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
                     $sql->where('videos.source', $source);
239 239
                 }
240 240
                 $query = $sql->first();
241
-                if (! empty($query)) {
241
+                if (!empty($query)) {
242 242
                     $result = $query->toArray();
243 243
                     $return = $result['id'];
244 244
                 }
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
     public function getAlternativeTitleExact(string $title, int $type, int $source = 0): mixed
255 255
     {
256 256
         $return = 0;
257
-        if (! empty($title)) {
257
+        if (!empty($title)) {
258 258
             if ($source > 0) {
259 259
                 $query = Video::query()
260 260
                     ->whereRaw("REPLACE(title,'\'','') = ?", $title)
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                     ->where('type', '=', $type)
270 270
                     ->first();
271 271
             }
272
-            if (! empty($query)) {
272
+            if (!empty($query)) {
273 273
                 $result = $query->toArray();
274 274
 
275 275
                 return $result['id'];
@@ -284,10 +284,10 @@  discard block
 block discarded – undo
284 284
      */
285 285
     public function addAliases($videoId, array $aliases = []): void
286 286
     {
287
-        if (! empty($aliases) && $videoId > 0) {
287
+        if (!empty($aliases) && $videoId > 0) {
288 288
             foreach ($aliases as $key => $title) {
289 289
                 // Check for tvmaze style aka
290
-                if (\is_array($title) && ! empty($title['name'])) {
290
+                if (\is_array($title) && !empty($title['name'])) {
291 291
                     $title = $title['name'];
292 292
                 }
293 293
                 // Check if we have the AKA already
Please login to merge, or discard this patch.
Blacklight/processing/PostProcess.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
 
275 275
             // Loop through the files.
276 276
             foreach ($files as $file) {
277
-                if (! isset($file['name'])) {
277
+                if (!isset($file['name'])) {
278 278
                     continue;
279 279
                 }
280 280
 
Please login to merge, or discard this patch.
Blacklight/processing/tv/TVMaze.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
                 }
266 266
 
267 267
                 // Check for show aliases and try match those too
268
-                if (\is_array($show->akas) && ! empty($show->akas)) {
268
+                if (\is_array($show->akas) && !empty($show->akas)) {
269 269
                     foreach ($show->akas as $key => $aka) {
270 270
                         $matchPercent = $this->checkMatch(strtolower($aka['name']), strtolower($cleanName), $matchPercent);
271 271
                         if ($matchPercent > $highestMatch) {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
         $hasCover = 0;
296 296
 
297 297
         // Try to get the Poster
298
-        if (! empty($this->posterUrl)) {
298
+        if (!empty($this->posterUrl)) {
299 299
             $hasCover = $ri->saveImage($videoId, $this->posterUrl, $this->imgSavePath);
300 300
 
301 301
             // Mark it retrieved if we saved an image
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
             'trakt' => 0,
367 367
             'tvrage' => (int) ($show->externalIDs['tvrage'] ?? 0),
368 368
             'tmdb' => 0,
369
-            'aliases' => ! empty($show->akas) ? (array) $show->akas : '',
369
+            'aliases' => !empty($show->akas) ? (array) $show->akas : '',
370 370
             'localzone' => "''",
371 371
         ];
372 372
     }
Please login to merge, or discard this patch.
Blacklight/processing/tv/TMDB.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
         sleep(1);
197 197
 
198
-        if (\is_array($response) && ! empty($response['results'])) {
198
+        if (\is_array($response) && !empty($response['results'])) {
199 199
             $return = $this->matchShowInfo($response['results'], $name);
200 200
         }
201 201
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
                 }
229 229
             }
230 230
         }
231
-        if (! empty($highest)) {
231
+        if (!empty($highest)) {
232 232
             try {
233 233
                 $showAlternativeTitles = TmdbClient::getTvApi()->getAlternativeTitles($highest['id']);
234 234
             } catch (TmdbApiException $e) {
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
         $hascover = 0;
266 266
 
267 267
         // Try to get the Poster
268
-        if (! empty($this->posterUrl)) {
268
+        if (!empty($this->posterUrl)) {
269 269
             $hascover = $ri->saveImage($videoId, $this->posterUrl, $this->imgSavePath);
270 270
 
271 271
             // Mark it retrieved if we saved an image
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
             'tvrage' => isset($show['external_ids']['tvrage_id']) ? (int) $show['external_ids']['tvrage_id'] : 0,
330 330
             'tvmaze' => 0,
331 331
             'tmdb' => (int) $show['id'],
332
-            'aliases' => ! empty($show['alternative_titles']) ? (array) $show['alternative_titles'] : '',
332
+            'aliases' => !empty($show['alternative_titles']) ? (array) $show['alternative_titles'] : '',
333 333
             'localzone' => "''",
334 334
         ];
335 335
     }
Please login to merge, or discard this patch.
Blacklight/processing/tv/TraktTv.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
 
256 256
         if (\is_array($response)) {
257 257
             foreach ($response as $show) {
258
-                if (! is_bool($show)) {
258
+                if (!is_bool($show)) {
259 259
                     // Check for exact title match first and then terminate if found
260 260
                     if ($show['show']['title'] === $name) {
261 261
                         $highest = $show;
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
             'tvrage' => $show['ids']['tvrage'] ?? 0,
309 309
             'tvmaze' => 0,
310 310
             'tmdb' => $show['ids']['tmdb'] ?? 0,
311
-            'aliases' => isset($show['aliases']) && ! empty($show['aliases']) ? (array) $show['aliases'] : '',
311
+            'aliases' => isset($show['aliases']) && !empty($show['aliases']) ? (array) $show['aliases'] : '',
312 312
             'localzone' => $this->localizedTZ,
313 313
         ];
314 314
     }
Please login to merge, or discard this patch.
Blacklight/processing/tv/TV.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -20,33 +20,33 @@  discard block
 block discarded – undo
20 20
 abstract class TV extends Videos
21 21
 {
22 22
     // Television Sources
23
-    protected const SOURCE_NONE = 0;   // No Scrape source
23
+    protected const SOURCE_NONE = 0; // No Scrape source
24 24
 
25
-    protected const SOURCE_TVDB = 1;   // Scrape source was TVDB
25
+    protected const SOURCE_TVDB = 1; // Scrape source was TVDB
26 26
 
27
-    protected const SOURCE_TVMAZE = 2;   // Scrape source was TVMAZE
27
+    protected const SOURCE_TVMAZE = 2; // Scrape source was TVMAZE
28 28
 
29
-    protected const SOURCE_TMDB = 3;   // Scrape source was TMDB
29
+    protected const SOURCE_TMDB = 3; // Scrape source was TMDB
30 30
 
31
-    protected const SOURCE_TRAKT = 4;   // Scrape source was Trakt
31
+    protected const SOURCE_TRAKT = 4; // Scrape source was Trakt
32 32
 
33
-    protected const SOURCE_IMDB = 5;   // Scrape source was IMDB
33
+    protected const SOURCE_IMDB = 5; // Scrape source was IMDB
34 34
 
35 35
     // Anime Sources
36
-    protected const SOURCE_ANIDB = 10;   // Scrape source was AniDB
36
+    protected const SOURCE_ANIDB = 10; // Scrape source was AniDB
37 37
 
38 38
     // Processing signifiers
39
-    protected const PROCESS_TVDB = 0;   // Process TVDB First
39
+    protected const PROCESS_TVDB = 0; // Process TVDB First
40 40
 
41
-    protected const PROCESS_TVMAZE = -1;   // Process TVMaze Second
41
+    protected const PROCESS_TVMAZE = -1; // Process TVMaze Second
42 42
 
43
-    protected const PROCESS_TMDB = -2;   // Process TMDB Third
43
+    protected const PROCESS_TMDB = -2; // Process TMDB Third
44 44
 
45
-    protected const PROCESS_TRAKT = -3;   // Process Trakt Fourth
45
+    protected const PROCESS_TRAKT = -3; // Process Trakt Fourth
46 46
 
47
-    protected const PROCESS_IMDB = -4;   // Process IMDB Fifth
47
+    protected const PROCESS_IMDB = -4; // Process IMDB Fifth
48 48
 
49
-    protected const NO_MATCH_FOUND = -6;   // Failed All Methods
49
+    protected const NO_MATCH_FOUND = -6; // Failed All Methods
50 50
 
51 51
     protected const FAILED_PARSE = -100; // Failed Parsing
52 52
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
                     'localzone' => $show['localzone'],
221 221
                 ]);
222 222
                 // If we have AKAs\aliases, insert those as well
223
-                if (! empty($show['aliases'])) {
223
+                if (!empty($show['aliases'])) {
224 224
                     $this->addAliases($videoId, $show['aliases']);
225 225
                 }
226 226
             }
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
                 $videoId
285 285
             )
286 286
         );
287
-        if (! empty($show['aliases'])) {
287
+        if (!empty($show['aliases'])) {
288 288
             $this->addAliases($videoId, $show['aliases']);
289 289
         }
290 290
     }
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
      */
295 295
     public function delete(int $id): mixed
296 296
     {
297
-        return DB::transaction(function () use ($id) {
297
+        return DB::transaction(function() use ($id) {
298 298
             DB::delete(
299 299
                 sprintf(
300 300
                     '
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
     {
344 344
         if ($series > 0 && $episode > 0) {
345 345
             $queryString = sprintf('tve.series = %d AND tve.episode = %d', $series, $episode);
346
-        } elseif (! empty($airdate)) {
346
+        } elseif (!empty($airdate)) {
347 347
             $queryString = sprintf('DATE(tve.firstaired) = %s', escapeString(date('Y-m-d', strtotime($airdate))));
348 348
         } else {
349 349
             return false;
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
     {
383 383
         $showInfo['name'] = $this->parseName($relname);
384 384
 
385
-        if (! empty($showInfo['name'])) {
385
+        if (!empty($showInfo['name'])) {
386 386
             // Retrieve the country from the cleaned name
387 387
             $showInfo['country'] = $this->parseCountry($showInfo['name']);
388 388
 
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
             $showInfo += $this->parseSeasonEp($relname);
394 394
 
395 395
             if (isset($showInfo['season'], $showInfo['episode'])) {
396
-                if (! isset($showInfo['airdate'])) {
396
+                if (!isset($showInfo['airdate'])) {
397 397
                     // If year is present in the release name, add it to the cleaned name for title search
398 398
                     if (preg_match('/[^a-z0-9](?P<year>(19|20)(\d{2}))[^a-z0-9]/i', $relname, $yearMatch)) {
399 399
                         $showInfo['cleanname'] .= ' ('.$yearMatch['year'].')';
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
      */
609 609
     public function checkDate(bool|string|null $date): string
610 610
     {
611
-        if (! empty($date)) {
611
+        if (!empty($date)) {
612 612
             $chk = explode(' ', $date);
613 613
             $chkd = explode('-', $chk[0]);
614 614
             if ($chkd[1] > 12) {
@@ -657,11 +657,11 @@  discard block
 block discarded – undo
657 657
         }
658 658
 
659 659
         foreach ($required as $req) {
660
-            if (! \in_array($type, ['tmdbS', 'tmdbE', 'traktS', 'traktE'], false)) {
661
-                if (! isset($array->$req)) {
660
+            if (!\in_array($type, ['tmdbS', 'tmdbE', 'traktS', 'traktE'], false)) {
661
+                if (!isset($array->$req)) {
662 662
                     return false;
663 663
                 }
664
-            } elseif (! isset($array[$req])) {
664
+            } elseif (!isset($array[$req])) {
665 665
                 return false;
666 666
             }
667 667
         }
Please login to merge, or discard this patch.
Blacklight/processing/tv/TVDB.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
                 }
142 142
 
143 143
                 if ((int) $videoId > 0 && (int) $tvDbId > 0) {
144
-                    if (! empty($tvdbShow['poster'])) { // Use TVDB poster if available
144
+                    if (!empty($tvdbShow['poster'])) { // Use TVDB poster if available
145 145
                         $this->getPoster($videoId);
146 146
                     } else { // Check Fanart.tv for poster
147 147
                         $poster = $this->fanart->getTVFanart($tvDbId);
@@ -151,8 +151,8 @@  discard block
 block discarded – undo
151 151
                         }
152 152
                     }
153 153
 
154
-                    $seasonNo = (! empty($release['season']) ? preg_replace('/^S0*/i', '', $release['season']) : '');
155
-                    $episodeNo = (! empty($release['episode']) ? preg_replace('/^E0*/i', '', $release['episode']) : '');
154
+                    $seasonNo = (!empty($release['season']) ? preg_replace('/^S0*/i', '', $release['season']) : '');
155
+                    $episodeNo = (!empty($release['episode']) ? preg_replace('/^E0*/i', '', $release['episode']) : '');
156 156
 
157 157
                     if ($episodeNo === 'all') {
158 158
                         // Set the video ID and leave episode 0
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
                     }
164 164
 
165 165
                     // Download all episodes if new show to reduce API/bandwidth usage
166
-                    if (! $this->countEpsByVideoID($videoId)) {
166
+                    if (!$this->countEpsByVideoID($videoId)) {
167 167
                         $this->getEpisodeInfo($tvDbId, -1, -1, $videoId);
168 168
                     }
169 169
 
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
                     }
258 258
 
259 259
                     // Check for show aliases and try match those too
260
-                    if (! empty($show->aliases)) {
260
+                    if (!empty($show->aliases)) {
261 261
                         foreach ($show->aliases as $key => $name) {
262 262
                             $matchPercent = $this->checkMatch(strtolower($name), strtolower($name), $matchPercent);
263 263
                             if ($matchPercent > $highestMatch) {
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
                     }
269 269
                 }
270 270
             }
271
-            if (! empty($highest)) {
271
+            if (!empty($highest)) {
272 272
                 $return = $this->formatShowInfo($highest);
273 273
             }
274 274
         }
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
             $poster = $this->client->series()->artworks($show->tvdb_id);
354 354
             // Grab the image with the highest score where type == 2
355 355
             $poster = collect($poster)->where('type', 2)->sortByDesc('score')->first();
356
-            $this->posterUrl = ! empty($poster->image) ? $poster->image : '';
356
+            $this->posterUrl = !empty($poster->image) ? $poster->image : '';
357 357
         } catch (ResourceNotFoundException $e) {
358 358
             $this->colorCli->climate()->error('Poster image not found on TVDB');
359 359
         }
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
             'tvrage' => 0,
380 380
             'tvmaze' => 0,
381 381
             'tmdb' => 0,
382
-            'aliases' => ! empty($show->aliases) ? $show->aliases : '',
382
+            'aliases' => !empty($show->aliases) ? $show->aliases : '',
383 383
             'localzone' => "''",
384 384
         ];
385 385
     }
Please login to merge, or discard this patch.
Blacklight/processing/adult/Hotmovies.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     {
102 102
         $studio = false;
103 103
         $director = false;
104
-        if (($ret = $this->_html->find('div.page_video_info')) && ! empty($ret->find('text'))) {
104
+        if (($ret = $this->_html->find('div.page_video_info')) && !empty($ret->find('text'))) {
105 105
             foreach ($ret->find('text') as $e) {
106 106
                 $e = trim($e->plaintext);
107 107
                 $rArray = [',', '...', '&nbsp:'];
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
                 }
116 116
                 if ($studio === true) {
117 117
                     if ((stripos($e, 'Custodian of Records') === false) && stripos($e, 'Description') === false) {
118
-                        if ($director === true && ! empty($e)) {
118
+                        if ($director === true && !empty($e)) {
119 119
                             $this->_res['director'] = $e;
120 120
                             $e = null;
121 121
                             $director = false;
122 122
                         }
123
-                        if (! empty($e)) {
123
+                        if (!empty($e)) {
124 124
                             $this->_res['productinfo'][] = $e;
125 125
                         }
126 126
                     } else {
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
                     $title = trim($ret->title);
209 209
                     $title = str_replace('/XXX/', '', $title);
210 210
                     $title = preg_replace('/\(.*?\)|[._-]/', ' ', $title);
211
-                    if (! empty($title)) {
211
+                    if (!empty($title)) {
212 212
                         similar_text($movie, $title, $p);
213 213
                         if ($p >= 90) {
214 214
                             $this->_title = $title;
Please login to merge, or discard this patch.
Blacklight/processing/adult/AEBN.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     protected function trailers(): mixed
65 65
     {
66 66
         $ret = $this->_html->find('a[itemprop=trailer]', 0);
67
-        if (! empty($ret) && preg_match('/movieId=(?<movieid>\d+)&/', trim($ret->href), $hits)) {
67
+        if (!empty($ret) && preg_match('/movieId=(?<movieid>\d+)&/', trim($ret->href), $hits)) {
68 68
             $movieid = $hits['movieid'];
69 69
             $this->_res['trailers']['url'] = self::AEBNSURL.self::TRAILERURL.$movieid;
70 70
         }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
                 $this->_res['genres'][] = trim($genre->plaintext);
101 101
             }
102 102
         }
103
-        if (! empty($this->_res['genres'])) {
103
+        if (!empty($this->_res['genres'])) {
104 104
             $this->_res['genres'] = array_unique($this->_res['genres']);
105 105
         }
106 106
 
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
     {
115 115
         $this->_res = [];
116 116
         $ret = $this->_html->findOne('div.starsFull');
117
-        if (! $ret instanceof SimpleHtmlDomNodeBlank) {
117
+        if (!$ret instanceof SimpleHtmlDomNodeBlank) {
118 118
             foreach ($ret->find('span[itemprop=name]') as $star) {
119 119
                 $this->_res['cast'][] = trim($star->plaintext);
120 120
             }
121 121
         } else {
122 122
             $ret = $this->_html->findOne('div.detailsLink');
123
-            if (! $ret instanceof SimpleHtmlDomNodeBlank) {
123
+            if (!$ret instanceof SimpleHtmlDomNodeBlank) {
124 124
                 foreach ($ret->find('span') as $star) {
125 125
                     if (strpos($star->plaintext, '/More/') !== false && strpos($star->plaintext, '/Stars/') !== false) {
126 126
                         $this->_res['cast'][] = trim($star->plaintext);
Please login to merge, or discard this patch.