Passed
Pull Request — master (#1693)
by Darko
02:59
created
Blacklight/NZBExport.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -49,19 +49,19 @@  discard block
 block discarded – undo
49 49
         $path = $params[0];
50 50
 
51 51
         // Check if the path ends with dir separator.
52
-        if (! Str::endsWith($path, '/')) {
52
+        if (!Str::endsWith($path, '/')) {
53 53
             $path .= '/';
54 54
         }
55 55
 
56 56
         // Check if it's a directory.
57
-        if (! File::isDirectory($path)) {
57
+        if (!File::isDirectory($path)) {
58 58
             $this->echoOut('Folder does not exist: '.$path);
59 59
 
60 60
             return $this->returnValue();
61 61
         }
62 62
 
63 63
         // Check if we can write to it.
64
-        if (! is_writable($path)) {
64
+        if (!is_writable($path)) {
65 65
             $this->echoOut('Folder is not writable: '.$path);
66 66
 
67 67
             return $this->returnValue();
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
         // Check if the from date is the proper format.
71 71
         if (isset($params[1]) && $params[1] !== '') {
72
-            if (! $this->checkDate($params[1])) {
72
+            if (!$this->checkDate($params[1])) {
73 73
                 return $this->returnValue();
74 74
             }
75 75
             $fromDate = $params[1];
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
         // Check if the to date is the proper format.
79 79
         if (isset($params[2]) && $params[2] !== '') {
80
-            if (! $this->checkDate($params[2])) {
80
+            if (!$this->checkDate($params[2])) {
81 81
                 return $this->returnValue();
82 82
             }
83 83
             $toDate = $params[2];
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
         // Check if the group_id exists.
87 87
         if (isset($params[3]) && $params[3] !== 0) {
88
-            if (! is_numeric($params[3])) {
88
+            if (!is_numeric($params[3])) {
89 89
                 $this->echoOut('The group ID is not a number: '.$params[3]);
90 90
 
91 91
                 return $this->returnValue();
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
             // Create a path to store the new NZB files.
122 122
             $currentPath = $path.$this->safeFilename($group['name']).'/';
123
-            if (! File::isDirectory($currentPath) && ! File::makeDirectory($currentPath) && ! File::isDirectory($currentPath)) {
123
+            if (!File::isDirectory($currentPath) && !File::makeDirectory($currentPath) && !File::isDirectory($currentPath)) {
124 124
                 throw new \RuntimeException(sprintf('Directory "%s" was not created', $currentPath));
125 125
             }
126 126
             foreach ($releases as $release) {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 
141 141
                 // Check if the user wants them in gzip, copy it if so.
142 142
                 if ($gzip) {
143
-                    if (! copy($nzbFile, $currentFile.'.nzb.gz')) {
143
+                    if (!copy($nzbFile, $currentFile.'.nzb.gz')) {
144 144
                         if ($this->echoCLI) {
145 145
                             echo 'Unable to export NZB with GUID: '.$release['guid'];
146 146
                         }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
                     // If not, decompress it and create a file to store it in.
151 151
                 } else {
152 152
                     $nzbContents = Utility::unzipGzipFile($nzbFile);
153
-                    if (! $nzbContents) {
153
+                    if (!$nzbContents) {
154 154
                         if ($this->echoCLI) {
155 155
                             echo 'Unable to export NZB with GUID: '.$release['guid'];
156 156
                         }
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 
191 191
     protected function checkDate($date): bool
192 192
     {
193
-        if (! preg_match('/^(\d{2}\/){2}\d{4}$/', $date)) {
193
+        if (!preg_match('/^(\d{2}\/){2}\d{4}$/', $date)) {
194 194
             $this->echoOut('Wrong date format: '.$date);
195 195
 
196 196
             return false;
Please login to merge, or discard this patch.
Blacklight/TmuxRun.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -687,7 +687,7 @@
 block discarded – undo
687 687
     {
688 688
         $sharing = (array) Arr::first(DB::select('SELECT enabled, posting, fetching FROM sharing'));
689 689
 
690
-        if (! empty($sharing) && (int) $sharing['enabled'] === 1 && (int) $runVar['settings']['run_sharing'] === 1 && ((int) $sharing['posting'] === 1 || (int) $sharing['fetching'] === 1) && shell_exec("tmux list-panes -t{$runVar['constants']['tmux_session']}:{$pane} | grep ^0 | grep -c dead") == 1) {
690
+        if (!empty($sharing) && (int) $sharing['enabled'] === 1 && (int) $runVar['settings']['run_sharing'] === 1 && ((int) $sharing['posting'] === 1 || (int) $sharing['fetching'] === 1) && shell_exec("tmux list-panes -t{$runVar['constants']['tmux_session']}:{$pane} | grep ^0 | grep -c dead") == 1) {
691 691
             shell_exec(
692 692
                 "tmux respawnp -t{$runVar['constants']['tmux_session']}:{$pane}.0 ' \
693 693
                     {$runVar['commands']['_php']} {$runVar['paths']['misc']}/update/multiprocessing/postprocess.php sha; \
Please login to merge, or discard this patch.
Blacklight/CollectionsCleaning.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     protected function generic(): array
108 108
     {
109 109
         // For non music groups.
110
-        if (! preg_match('/\.(flac|lossless|mp3|music|sounds)/', $this->groupName)) {
110
+        if (!preg_match('/\.(flac|lossless|mp3|music|sounds)/', $this->groupName)) {
111 111
             // File/part count.
112 112
             // File extensions.
113 113
             // File extensions - If it was not in quotes.
Please login to merge, or discard this patch.
Blacklight/Console.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
     {
276 276
         $browseBy = ' ';
277 277
         foreach ($this->getBrowseByOptions() as $bbk => $bbv) {
278
-            if (! empty($_REQUEST[$bbk])) {
278
+            if (!empty($_REQUEST[$bbk])) {
279 279
                 $bbs = stripslashes($_REQUEST[$bbk]);
280 280
                 $browseBy .= ' AND con.'.$bbv.' LIKE '.escapeString('%'.$bbs.'%');
281 281
             }
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
         $con['esrb'] = (string) $amaz->ItemAttributes->ESRBAgeRating;
401 401
         $con['releasedate'] = (string) $amaz->ItemAttributes->ReleaseDate;
402 402
 
403
-        if (! isset($con['releasedate'])) {
403
+        if (!isset($con['releasedate'])) {
404 404
             $con['releasedate'] = '';
405 405
         }
406 406
 
@@ -628,7 +628,7 @@  discard block
 block discarded – undo
628 628
         if (config('config.credentials.client_id') !== '' && config('config.credentials.client_secret') !== '') {
629 629
             try {
630 630
                 $result = Game::where('name', $gameInfo)->get();
631
-                if (! empty($result)) {
631
+                if (!empty($result)) {
632 632
                     $bestMatchPct = 0;
633 633
                     foreach ($result as $res) {
634 634
                         similar_text(strtolower($gameInfo), strtolower($res->name), $percent);
@@ -646,7 +646,7 @@  discard block
 block discarded – undo
646 646
                         ])->where('id', $bestMatch)->first();
647 647
 
648 648
                         $publishers = [];
649
-                        if (! empty($game->involved_companies)) {
649
+                        if (!empty($game->involved_companies)) {
650 650
                             foreach ($game->involved_companies as $publisher) {
651 651
                                 if ($publisher['publisher'] === true) {
652 652
                                     $company = Company::find($publisher['company']);
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
 
658 658
                         $genres = [];
659 659
 
660
-                        if (! empty($game->themes)) {
660
+                        if (!empty($game->themes)) {
661 661
                             foreach ($game->themes as $theme) {
662 662
                                 $genres[] = $theme['name'];
663 663
                             }
@@ -667,7 +667,7 @@  discard block
 block discarded – undo
667 667
 
668 668
                         $platform = '';
669 669
 
670
-                        if (! empty($game->platforms)) {
670
+                        if (!empty($game->platforms)) {
671 671
                             foreach ($game->platforms as $platforms) {
672 672
                                 $percentCurrent = 0;
673 673
                                 $gamePlatforms = Platform::where('id', $platforms)->get();
@@ -686,13 +686,13 @@  discard block
 block discarded – undo
686 686
                             'title' => $game->name,
687 687
                             'asin' => $game->id,
688 688
                             'review' => $game->summary ?? '',
689
-                            'coverurl' => ! empty($game->cover->url) ? 'https:'.$game->cover->url : '',
690
-                            'releasedate' => ! empty($game->first_release_date) ? $game->first_release_date->format('Y-m-d') : now()->format('Y-m-d'),
691
-                            'esrb' => ! empty($game->aggregated_rating) ? round($game->aggregated_rating).'%' : 'Not Rated',
689
+                            'coverurl' => !empty($game->cover->url) ? 'https:'.$game->cover->url : '',
690
+                            'releasedate' => !empty($game->first_release_date) ? $game->first_release_date->format('Y-m-d') : now()->format('Y-m-d'),
691
+                            'esrb' => !empty($game->aggregated_rating) ? round($game->aggregated_rating).'%' : 'Not Rated',
692 692
                             'url' => $game->url ?? '',
693
-                            'publisher' => ! empty($publishers) ? implode(',', $publishers) : 'Unknown',
693
+                            'publisher' => !empty($publishers) ? implode(',', $publishers) : 'Unknown',
694 694
                             'platform' => $platform ?? '',
695
-                            'consolegenre' => ! empty($genres) ? implode(',', $genres) : 'Unknown',
695
+                            'consolegenre' => !empty($genres) ? implode(',', $genres) : 'Unknown',
696 696
                             'consolegenreid' => $genreKey ?? '',
697 697
                             'salesrank' => '',
698 698
                         ];
@@ -835,7 +835,7 @@  discard block
 block discarded – undo
835 835
                 $platform = 'PSX';
836 836
             }
837 837
 
838
-            if (! empty($title) && stripos('XBLA', $platform) === 0 && stripos('dlc', $title) !== false) {
838
+            if (!empty($title) && stripos('XBLA', $platform) === 0 && stripos('dlc', $title) !== false) {
839 839
                 $platform = 'XBOX360';
840 840
             }
841 841
 
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
            Other option is to pass the $release->categories_id here if we don't find a platform but that
851 851
            would require an extra lookup to determine the name. In either case we should have a title at the minimum. */
852 852
 
853
-        return (isset($result['title'], $result['platform']) && ! empty($result['title'])) ? $result : false;
853
+        return (isset($result['title'], $result['platform']) && !empty($result['title'])) ? $result : false;
854 854
     }
855 855
 
856 856
     public function getBrowseNode($platform): string
Please login to merge, or discard this patch.
Blacklight/Regexes.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      */
150 150
     public function deleteRegex(int $id): void
151 151
     {
152
-        DB::transaction(function () use ($id) {
152
+        DB::transaction(function() use ($id) {
153 153
             DB::delete(sprintf('DELETE FROM %s WHERE id = %d', $this->tableName, $id));
154 154
         }, 3);
155 155
     }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     {
167 167
         $groupID = UsenetGroup::getIDByName($groupName);
168 168
 
169
-        if (! $groupID) {
169
+        if (!$groupID) {
170 170
             return [];
171 171
         }
172 172
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
                     ksort($hits);
189 189
                     $string = $string2 = '';
190 190
                     foreach ($hits as $key => $hit) {
191
-                        if (! \is_int($key)) {
191
+                        if (!\is_int($key)) {
192 192
                             $string .= $hit;
193 193
                             $string2 .= '<br/>'.$key.': '.$hit;
194 194
                         }
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
     {
228 228
         $groupID = UsenetGroup::getIDByName($groupName);
229 229
 
230
-        if (! $groupID) {
230
+        if (!$groupID) {
231 231
             return [];
232 232
         }
233 233
 
Please login to merge, or discard this patch.
Blacklight/ReleaseImage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
             return 0;
135 135
         }
136 136
         // Check if it's on the drive.
137
-        if (! File::isReadable($coverPath)) {
137
+        if (!File::isReadable($coverPath)) {
138 138
             return 0;
139 139
         }
140 140
 
Please login to merge, or discard this patch.
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.