Completed
Push — master ( 96f5c0...6ce451 )
by Dmitry
03:33
created
src/Expectation/Matcher/DirectoryMatcher.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function isExist() {
20 20
         $this->startStep('is exist')
21
-             ->assertDirectoryExists();
21
+                ->assertDirectoryExists();
22 22
 
23 23
         return $this;
24 24
     }
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function isNotExist() {
30 30
         $this->startStep('is not exist')
31
-             ->assertDirectoryNotExists();
31
+                ->assertDirectoryNotExists();
32 32
 
33 33
         return $this;
34 34
     }
Please login to merge, or discard this patch.
src/Expectation/Matcher/NumberMatcher.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function isFinite(): self {
15 15
         $this->startStep('is finite')
16
-             ->assertFinite();
16
+                ->assertFinite();
17 17
 
18 18
         return $this;
19 19
     }
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function isInfinite(): self {
25 25
         $this->startStep('is infinite')
26
-             ->assertInfinite();
26
+                ->assertInfinite();
27 27
 
28 28
         return $this;
29 29
     }
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function isNan(): self {
35 35
         $this->startStep('is nan')
36
-             ->assertNan();
36
+                ->assertNan();
37 37
 
38 38
         return $this;
39 39
     }
Please login to merge, or discard this patch.