Passed
Push — dev ( 8e8e3b...6bb8f6 )
by Dispositif
03:16 queued 15s
created
src/Application/Http/ExternHttpClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             return null;
66 66
         }
67 67
 
68
-        return (string)$response->getBody()->getContents() ?? '';
68
+        return (string) $response->getBody()->getContents() ?? '';
69 69
     }
70 70
 
71 71
     public static function isWebURL(string $url): bool
Please login to merge, or discard this patch.
src/Application/AbstractBotTaskWorker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         }
66 66
         $this->setUpInConstructor();
67 67
 
68
-        $this->run();//todo delete that and use (Worker)->run($duration) or process management
68
+        $this->run(); //todo delete that and use (Worker)->run($duration) or process management
69 69
     }
70 70
 
71 71
     protected function setUpInConstructor(): void
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
             new EditInfo($this->taskName, $this->minorFlag, $this->botFlag, $this->maxLag)
190 190
         );
191 191
         dump($result);
192
-        echo "Sleep ".(string)static::SLEEP_AFTER_EDITION."\n";
192
+        echo "Sleep ".(string) static::SLEEP_AFTER_EDITION."\n";
193 193
         sleep(static::SLEEP_AFTER_EDITION);
194 194
     }
195 195
 }
Please login to merge, or discard this patch.