Completed
Push — master ( 02c31b...826c70 )
by Webysther
03:02 queued 01:14
created
src/Command/Create.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     {
204 204
         $from = getcwd().'/resources/public/';
205 205
         foreach (new \DirectoryIterator($from) as $fileInfo) {
206
-            if($fileInfo->isDot()) {
206
+            if ($fileInfo->isDot()) {
207 207
                 continue;
208 208
             }
209 209
             $file = $fileInfo->getFilename();
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
             $base = $uri['scheme'].'://'.$uri['host'];
322 322
             $total = $this->http->getTotalErrorByMirror($base);
323 323
 
324
-            if(!isset($this->latestErrorsShowed[$base])){
324
+            if (!isset($this->latestErrorsShowed[$base])) {
325 325
                 $this->latestErrorsShowed[$base] = 0;
326 326
             }
327 327
 
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
                 if ($this->isVeryVerbose() && $total > 1) {
332 332
                     //print_r($this->latestErrorsShowed);
333 333
                     //print($base.PHP_EOL);
334
-                    if($this->latestErrorsShowed[$base] == $total){
334
+                    if ($this->latestErrorsShowed[$base] == $total) {
335 335
                         continue;
336 336
                     }
337 337
 
Please login to merge, or discard this patch.