Completed
Push — master ( 96f5c0...6ce451 )
by Dmitry
03:33
created
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.