Passed
Push — master ( 2d44db...3ed9a4 )
by Darko
06:04
created
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.