Passed
Pull Request — master (#1609)
by
unknown
05:57
created
app/Providers/AppServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         Paginator::useBootstrapFive();
18 18
         $smarty = app('smarty.view');
19 19
         view()->share('smarty', $smarty);
20
-        Gate::define('viewPulse', function (User $user) {
20
+        Gate::define('viewPulse', function(User $user) {
21 21
             return $user->hasRole('Admin');
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ForgotPasswordController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         if (empty($email) && empty($rssToken)) {
47 47
             app('smarty.view')->assign('error', 'Missing parameter (email and/or apikey) to send password reset');
48 48
         } else {
49
-            if (config('captcha.enabled') === true && (! empty(config('captcha.secret')) && ! empty(config('captcha.sitekey')))) {
49
+            if (config('captcha.enabled') === true && (!empty(config('captcha.secret')) && !empty(config('captcha.sitekey')))) {
50 50
                 $this->validate($request, [
51 51
                     'g-recaptcha-response' => 'required|captcha',
52 52
                 ]);
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             //
55 55
             // Check users exists and send an email
56 56
             //
57
-            $ret = ! empty($rssToken) ? User::getByRssToken($rssToken) : User::getByEmail($email);
57
+            $ret = !empty($rssToken) ? User::getByRssToken($rssToken) : User::getByEmail($email);
58 58
             if ($ret === null) {
59 59
                 app('smarty.view')->assign('error', 'The email or apikey are not recognised.');
60 60
                 $sent = true;
Please login to merge, or discard this patch.
app/Extensions/helper/helpers.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 use Symfony\Component\Process\Process;
17 17
 use Zip as ZipStream;
18 18
 
19
-if (! function_exists('getRawHtml')) {
19
+if (!function_exists('getRawHtml')) {
20 20
     /**
21 21
      * @param  bool  $cookie
22 22
      * @return bool|mixed|string
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     }
52 52
 }
53 53
 
54
-if (! function_exists('makeFieldLinks')) {
54
+if (!function_exists('makeFieldLinks')) {
55 55
     /**
56 56
      * @return string
57 57
      *
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     }
82 82
 }
83 83
 
84
-if (! function_exists('getUserBrowseOrder')) {
84
+if (!function_exists('getUserBrowseOrder')) {
85 85
     /**
86 86
      * @param  string  $orderBy
87 87
      */
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     }
108 108
 }
109 109
 
110
-if (! function_exists('getUserBrowseOrdering')) {
110
+if (!function_exists('getUserBrowseOrdering')) {
111 111
     function getUserBrowseOrdering(): array
112 112
     {
113 113
         return [
@@ -137,21 +137,21 @@  discard block
 block discarded – undo
137 137
     }
138 138
 }
139 139
 
140
-if (! function_exists('createGUID')) {
140
+if (!function_exists('createGUID')) {
141 141
     /**
142 142
      * @throws Exception
143 143
      */
144 144
     function createGUID(): string
145 145
     {
146 146
         $data = random_bytes(16);
147
-        $data[6] = \chr(\ord($data[6]) & 0x0F | 0x40);    // set version to 0100
148
-        $data[8] = \chr(\ord($data[8]) & 0x3F | 0x80);    // set bits 6-7 to 10
147
+        $data[6] = \chr(\ord($data[6]) & 0x0F|0x40); // set version to 0100
148
+        $data[8] = \chr(\ord($data[8]) & 0x3F|0x80); // set bits 6-7 to 10
149 149
 
150 150
         return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(sodium_bin2hex($data), 4));
151 151
     }
152 152
 }
153 153
 
154
-if (! function_exists('getSimilarName')) {
154
+if (!function_exists('getSimilarName')) {
155 155
     /**
156 156
      * @param  string  $name
157 157
      */
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     }
162 162
 }
163 163
 
164
-if (! function_exists('color')) {
164
+if (!function_exists('color')) {
165 165
     /**
166 166
      * @param  string  $string
167 167
      */
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     }
172 172
 }
173 173
 
174
-if (! function_exists('human_filesize')) {
174
+if (!function_exists('human_filesize')) {
175 175
     /**
176 176
      * @param  int  $decimals
177 177
      */
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 }
186 186
 
187
-if (! function_exists('bcdechex')) {
187
+if (!function_exists('bcdechex')) {
188 188
     /**
189 189
      * @return string
190 190
      */
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     }
202 202
 }
203 203
 
204
-if (! function_exists('runCmd')) {
204
+if (!function_exists('runCmd')) {
205 205
     /**
206 206
      * Run CLI command.
207 207
      *
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
     }
230 230
 }
231 231
 
232
-if (! function_exists('escapeString')) {
232
+if (!function_exists('escapeString')) {
233 233
     /**
234 234
      * @return string
235 235
      */
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     }
240 240
 }
241 241
 
242
-if (! function_exists('realDuration')) {
242
+if (!function_exists('realDuration')) {
243 243
     /**
244 244
      * @return string
245 245
      */
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
     }
252 252
 }
253 253
 
254
-if (! function_exists('is_it_json')) {
254
+if (!function_exists('is_it_json')) {
255 255
     /**
256 256
      * @param  array|string  $isIt
257 257
      * @return bool
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     return $zipped;
295 295
 }
296 296
 
297
-if (! function_exists('release_flag')) {
297
+if (!function_exists('release_flag')) {
298 298
     // Function inspired by c0r3@newznabforums adds country flags on the browse page.
299 299
     /**
300 300
      * @param  string  $text  Text to match against.
@@ -430,10 +430,10 @@  discard block
 block discarded – undo
430 430
 
431 431
         return '';
432 432
     }
433
-    if (! function_exists('sanitize')) {
433
+    if (!function_exists('sanitize')) {
434 434
         function sanitize(array|string $phrases, array $doNotSanitize = []): string
435 435
         {
436
-            if (! is_array($phrases)) {
436
+            if (!is_array($phrases)) {
437 437
                 $wordArray = explode(' ', str_replace('.', ' ', $phrases));
438 438
             } else {
439 439
                 $wordArray = $phrases;
@@ -444,9 +444,9 @@  discard block
 block discarded – undo
444 444
             foreach ($wordArray as $words) {
445 445
                 $words = preg_split('/\s+/', $words);
446 446
                 foreach ($words as $st) {
447
-                    if (Str::startsWith($st, ['!', '+', '-', '?', '*']) && Str::length($st) > 1 && ! preg_match('/([!+?\-*]){2,}/', $st)) {
447
+                    if (Str::startsWith($st, ['!', '+', '-', '?', '*']) && Str::length($st) > 1 && !preg_match('/([!+?\-*]){2,}/', $st)) {
448 448
                         $str = $st;
449
-                    } elseif (Str::endsWith($st, ['+', '-', '?', '*']) && Str::length($st) > 1 && ! preg_match('/([!+?\-*]){2,}/', $st)) {
449
+                    } elseif (Str::endsWith($st, ['+', '-', '?', '*']) && Str::length($st) > 1 && !preg_match('/([!+?\-*]){2,}/', $st)) {
450 450
                         $str = $st;
451 451
                     } else {
452 452
                         $str = Sanitizer::escape($st, $doNotSanitize);
Please login to merge, or discard this patch.
misc/update/update_binaries.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 }
20 20
 $binaries = new Binaries(['NNTP' => $nntp]);
21 21
 
22
-if (isset($argv[1]) && ! is_numeric($argv[1])) {
22
+if (isset($argv[1]) && !is_numeric($argv[1])) {
23 23
     $groupName = $argv[1];
24 24
     $colorCli->header("Updating group: $groupName");
25 25
 
@@ -36,8 +36,7 @@  discard block
 block discarded – undo
36 36
     }
37 37
 } else {
38 38
     try {
39
-        $binaries->updateAllGroups((isset($argv[1]) && is_numeric($argv[1]) && $argv[1] > 0 ? $argv[1] :
40
-            $maxHeaders));
39
+        $binaries->updateAllGroups((isset($argv[1]) && is_numeric($argv[1]) && $argv[1] > 0 ? $argv[1] : $maxHeaders));
41 40
     } catch (Throwable $e) {
42 41
         Illuminate\Support\Facades\Log::error($e->getMessage());
43 42
     }
Please login to merge, or discard this patch.
Blacklight/processing/post/AniDB.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
             'airdate',
94 94
             'episode_title',
95 95
         ])->first();
96
-        if (! empty($result)) {
96
+        if (!empty($result)) {
97 97
             return $result->toArray();
98 98
         }
99 99
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             $this->status = self::PROC_EXTFAIL;
144 144
         }
145 145
 
146
-        if (! empty($hits['title'])) {
146
+        if (!empty($hits['title'])) {
147 147
             $hits['title'] = trim(str_replace(['_', '.'], ' ', $hits['title']));
148 148
         }
149 149
 
@@ -187,10 +187,10 @@  discard block
 block discarded – undo
187 187
                 $anidbId = $this->getAnidbByName($tmpName);
188 188
             }
189 189
 
190
-            if (! empty($anidbId) && is_numeric($anidbId->anidbid) && $anidbId->anidbid > 0) {
190
+            if (!empty($anidbId) && is_numeric($anidbId->anidbid) && $anidbId->anidbid > 0) {
191 191
                 $updatedAni = $this->checkAniDBInfo($anidbId->anidbid, $cleanArr['epno']);
192 192
                 if (empty($updatedAni)) {
193
-                    if (! empty($this->updateTimeCheck($anidbId->anidbid))) {
193
+                    if (!empty($this->updateTimeCheck($anidbId->anidbid))) {
194 194
                         $this->padb->populateTable('info', $anidbId->anidbid);
195 195
                         $this->doRandomSleep();
196 196
                         $updatedAni = $this->checkAniDBInfo($anidbId->anidbid);
Please login to merge, or discard this patch.
Blacklight/ManticoreSearch.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function updatePreDb(array $parameters): void
155 155
     {
156
-        if (! empty($parameters)) {
156
+        if (!empty($parameters)) {
157 157
             $this->insertPredb($parameters);
158 158
         }
159 159
     }
@@ -214,15 +214,15 @@  discard block
 block discarded – undo
214 214
         $resultData = [];
215 215
         try {
216 216
             $query = $this->search->setIndex($rt_index)->option('ranker', 'sph04')->option('sort_method', 'pq')->maxMatches(10000)->limit(10000)->sort('id', 'desc')->stripBadUtf8(true)->trackScores(true);
217
-            if (! empty($searchArray)) {
217
+            if (!empty($searchArray)) {
218 218
                 foreach ($searchArray as $key => $value) {
219 219
                     $query->search('@@relaxed @'.$key.' '.self::escapeString($value));
220 220
                 }
221
-            } elseif (! empty($searchString)) {
221
+            } elseif (!empty($searchString)) {
222 222
                 // If $column is an array and has more than one item, implode it and wrap in parentheses.
223
-                if (! empty($column) && \count($column) > 1) {
223
+                if (!empty($column) && \count($column) > 1) {
224 224
                     $searchColumns = '@('.implode(',', $column).')';
225
-                } elseif (! empty($column) && \count($column) == 1) { // If $column is an array and has only one item, use as is.
225
+                } elseif (!empty($column) && \count($column) == 1) { // If $column is an array and has only one item, use as is.
226 226
                     $searchColumns = '@'.$column[0];
227 227
                 } else {
228 228
                     $searchColumns = ''; // Careful, this will search all columns.
Please login to merge, or discard this patch.
Blacklight/NZBImport.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     public function beginImport($filesToProcess, bool $useNzbName = false, bool $delete = false, bool $deleteFailed = false): bool|string
81 81
     {
82 82
         // Get all the groups in the DB.
83
-        if (! $this->getAllGroups()) {
83
+        if (!$this->getAllGroups()) {
84 84
             if ($this->browser) {
85 85
                 return $this->retVal;
86 86
             }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                     gzwrite($fp, $nzbString);
146 146
                     gzclose($fp);
147 147
 
148
-                    if (! File::isFile($path)) {
148
+                    if (!File::isFile($path)) {
149 149
                         $this->echoOut('ERROR: Problem compressing NZB file to: '.$path);
150 150
 
151 151
                         // Remove the release.
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
                 if ($groupID === -1) {
232 232
                     if (array_key_exists($group, $this->allGroups)) {
233 233
                         $groupID = $this->allGroups[$group];
234
-                        if (! $groupName) {
234
+                        if (!$groupName) {
235 235
                             $groupName = $group;
236 236
                         }
237 237
                     } else {
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
             }
266 266
 
267 267
             // If we found a group and it's not blacklisted.
268
-            if ($groupID !== -1 && ! $isBlackListed) {
268
+            if ($groupID !== -1 && !$isBlackListed) {
269 269
                 // Get the size of the release.
270 270
                 if (\count($file->segments->segment) > 0) {
271 271
                     foreach ($file->segments->segment as $segment) {
Please login to merge, or discard this patch.
app/Http/Controllers/BtcPaymentController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             $user = User::query()->where('email', '=', $payload['metadata']['buyerEmail'])->first();
106 106
             if ($user) {
107 107
                 $checkOrder = Payment::query()->where('invoice_id', '=', $payload['invoiceId'])->where('payment_status', '=', 'Settled')->first();
108
-                if (! empty($checkOrder)) {
108
+                if (!empty($checkOrder)) {
109 109
                     Log::error('Duplicate BTCPay webhook: '.$payload['webhookId']);
110 110
 
111 111
                     return response('Not Found', 404);
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         } elseif ($payload['type'] === 'InvoiceSettled') {
135 135
             // Check if we have the invoice_id in payments table and if we do, update the user account
136 136
             $checkOrder = Payment::query()->where('invoice_id', '=', $payload['invoiceId'])->where('payment_status', '=', 'Settled')->first();
137
-            if (! empty($checkOrder)) {
137
+            if (!empty($checkOrder)) {
138 138
                 $user = User::query()->where('email', '=', $checkOrder->email)->first();
139 139
                 if ($user) {
140 140
                     preg_match('/(?P<role>\w+(\s\+\+)?)[\s](?P<addYears>\d+)/i', $checkOrder->item_description, $matches);
Please login to merge, or discard this patch.
app/Http/Middleware/ForceJsonOnAPI.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public function handle(Request $request, Closure $next): Response
18 18
     {
19 19
         // Force Json accept type on api routes
20
-        if ($request->is('api/*') && ! Str::contains($request->header('accept'), ['/json', '+json'])) {
20
+        if ($request->is('api/*') && !Str::contains($request->header('accept'), ['/json', '+json'])) {
21 21
             $request->headers->set('accept', 'application/json,'.$request->header('accept'));
22 22
         }
23 23
 
Please login to merge, or discard this patch.