Passed
Push — master ( 1493f0...d7aea6 )
by Dmitry
07:28 queued 10s
created
src/Expectation/Matcher/BooleanMatcher.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public function isTrue() {
16 16
         $this->startStep('is true')
17
-             ->assertTrue();
17
+                ->assertTrue();
18 18
 
19 19
         return $this;
20 20
     }
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function isNotTrue() {
26 26
         $this->startStep('is not true')
27
-             ->assertNotTrue();
27
+                ->assertNotTrue();
28 28
 
29 29
         return $this;
30 30
     }
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function isFalse() {
36 36
         $this->startStep('is false')
37
-             ->assertFalse();
37
+                ->assertFalse();
38 38
 
39 39
         return $this;
40 40
     }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function isNotFalse() {
46 46
         $this->startStep('is not false')
47
-             ->assertNotFalse();
47
+                ->assertNotFalse();
48 48
 
49 49
         return $this;
50 50
     }
Please login to merge, or discard this patch.
src/Expectation/Matcher/ClassMatcher.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      */
17 17
     public function isExist(): self {
18 18
         $this->startStep('is exist')
19
-             ->assertClassExists();
19
+                ->assertClassExists();
20 20
 
21 21
         return $this;
22 22
     }
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function isNotExist(): self {
28 28
         $this->startStep('is not exist')
29
-             ->assertClassDoesNotExist();
29
+                ->assertClassDoesNotExist();
30 30
 
31 31
         return $this;
32 32
     }
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function isInterface(): self {
38 38
         $this->startStep('is interface')
39
-             ->assertClassIsInterface();
39
+                ->assertClassIsInterface();
40 40
 
41 41
         return $this;
42 42
     }
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function isNotInterface(): self {
48 48
         $this->startStep('is not interface')
49
-             ->assertClassIsNotInterface();
49
+                ->assertClassIsNotInterface();
50 50
 
51 51
         return $this;
52 52
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function hasStaticAttribute($attribute): self {
58 58
         $this->startStep("has static attribute \"{$attribute}\"")
59
-             ->assertClassHasStaticAttribute($attribute);
59
+                ->assertClassHasStaticAttribute($attribute);
60 60
 
61 61
         return $this;
62 62
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function doesNotHaveStaticAttribute($attribute): self {
68 68
         $this->startStep("does not have static attribute \"{$attribute}\"")
69
-             ->assertClassNotHasStaticAttribute($attribute);
69
+                ->assertClassNotHasStaticAttribute($attribute);
70 70
 
71 71
         return $this;
72 72
     }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function hasAttribute($attribute): self {
78 78
         $this->startStep("has attribute \"{$attribute }\"")
79
-             ->assertClassHasAttribute($attribute);
79
+                ->assertClassHasAttribute($attribute);
80 80
 
81 81
         return $this;
82 82
     }
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function doesNotHaveAttribute($attribute): self {
88 88
         $this->startStep("does not have attribute \"{$attribute}\"")
89
-             ->assertClassNotHasAttribute($attribute);
89
+                ->assertClassNotHasAttribute($attribute);
90 90
 
91 91
         return $this;
92 92
     }
Please login to merge, or discard this patch.
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.
src/Actor/I.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
 
11 11
     }
12 12
 
13
-    public static function verify(string $scenario,  callable $verificationSteps = null) {
13
+    public static function verify(string $scenario, callable $verificationSteps = null) {
14 14
 
15 15
     }
16 16
 
17
-    public static function expect(string $scenario,  callable $verificationSteps = null) {
17
+    public static function expect(string $scenario, callable $verificationSteps = null) {
18 18
 
19 19
     }
20 20
 
Please login to merge, or discard this patch.