Completed
Push — master ( d96723...3a43b0 )
by Noritaka
07:57
created
src/matcher/ToBeMode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         $message->appendText('Expected ')
62 62
             ->appendValue($this->actual)
63 63
             ->appendText(' to be ')
64
-            ->appendText('0' . decoct($this->expected))
64
+            ->appendText('0'.decoct($this->expected))
65 65
             ->appendText(' mode');
66 66
     }
67 67
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $message->appendText('Expected ')
74 74
             ->appendValue($this->actual)
75 75
             ->appendText(' not to be ')
76
-            ->appendText('0' . decoct($this->expected))
76
+            ->appendText('0'.decoct($this->expected))
77 77
             ->appendText(' mode');
78 78
     }
79 79
 }
Please login to merge, or discard this patch.
src/FileSystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 {
19 19
     public function registerTo(MatcherRegistry $registry)
20 20
     {
21
-        $package = MatcherPackage::fromPackageFile(__DIR__ . '/../composer.json');
21
+        $package = MatcherPackage::fromPackageFile(__DIR__.'/../composer.json');
22 22
         $package->registerTo($registry);
23 23
     }
24 24
 }
Please login to merge, or discard this patch.