Passed
Branch master (d1681e)
by Petr
08:00
created
Category
php-tests/BasicTests/BasicTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             // more than one!
28 28
             do {
29 29
                 $exMessages[] = $ex->getMessage();
30
-            } while($ex = $ex->getPrev()); // NOT previous
30
+            } while ($ex = $ex->getPrev()); // NOT previous
31 31
         }
32 32
 
33 33
         // check constants
Please login to merge, or discard this patch.
php-src/Manage/FileInput.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
 
39 39
     public function getName(): string
40 40
     {
41
-        return $this->filePosition ? sprintf('%03d_%s', intval($this->filePosition), $this->fileName) : $this->fileName ;
41
+        return $this->filePosition ? sprintf('%03d_%s', intval($this->filePosition), $this->fileName) : $this->fileName;
42 42
     }
43 43
 
44 44
     public function getFullName(): string
45 45
     {
46
-        return $this->targetDir . DIRECTORY_SEPARATOR . $this->getName() ;
46
+        return $this->targetDir . DIRECTORY_SEPARATOR . $this->getName();
47 47
     }
48 48
 }
Please login to merge, or discard this patch.