Passed
Pull Request — master (#216)
by Roberto
02:51
created
src/Soap/SoapBase.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -269,8 +269,8 @@  discard block
 block discarded – undo
269 269
                 . $this->uid()
270 270
                 .'/'
271 271
                 . $mapto
272
-                . '/' ;
273
-            $folderRealPath = sys_get_temp_dir().$path;
272
+                . '/';
273
+            $folderRealPath = sys_get_temp_dir() . $path;
274 274
         }
275 275
         if (substr($folderRealPath, -1) !== '/') {
276 276
             $folderRealPath .= '/';
@@ -559,7 +559,7 @@  discard block
 block discarded – undo
559 559
         if (!$this->filesystem->has($name)) {
560 560
             return $name;
561 561
         }
562
-        $this->randomName($n+5);
562
+        $this->randomName($n + 5);
563 563
     }
564 564
 
565 565
     /**
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
         //remove todos os arquivos antigos
579 579
         $contents = $this->filesystem->listContents($this->certsdir, true);
580 580
         $dt = new \DateTime();
581
-        $tint = new \DateInterval("PT".$this->waitingTime."M");
581
+        $tint = new \DateInterval("PT" . $this->waitingTime . "M");
582 582
         $tint->invert = 1;
583 583
         $tsLimit = $dt->add($tint)->getTimestamp();
584 584
         foreach ($contents as $item) {
Please login to merge, or discard this patch.