Test Failed
Push — master ( adef33...24e1db )
by Roberto
04:59 queued 02:38
created
src/Soap/SoapBase.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -273,8 +273,8 @@  discard block
 block discarded – undo
273 273
                 . $this->uid()
274 274
                 .'/'
275 275
                 . $mapto
276
-                . '/' ;
277
-            $folderRealPath = sys_get_temp_dir().$path;
276
+                . '/';
277
+            $folderRealPath = sys_get_temp_dir() . $path;
278 278
         }
279 279
         if (substr($folderRealPath, -1) !== '/') {
280 280
             $folderRealPath .= '/';
@@ -563,7 +563,7 @@  discard block
 block discarded – undo
563 563
         if (!$this->filesystem->has($name)) {
564 564
             return $name;
565 565
         }
566
-        $this->randomName($n+5);
566
+        $this->randomName($n + 5);
567 567
     }
568 568
 
569 569
     /**
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
             //remove todos os arquivos antigos
584 584
             $contents = $this->filesystem->listContents($this->certsdir, true);
585 585
             $dt = new \DateTime();
586
-            $tint = new \DateInterval("PT".$this->waitingTime."M");
586
+            $tint = new \DateInterval("PT" . $this->waitingTime . "M");
587 587
             $tint->invert = 1;
588 588
             $tsLimit = $dt->add($tint)->getTimestamp();
589 589
             foreach ($contents as $item) {
Please login to merge, or discard this patch.