Completed
Push — master ( 3ff263...14b2f1 )
by Randy
01:42
created
src/NumericEnsurance.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     public function isBetween(float $lhs, float $rhs): NumericEnsurance
174 174
     {
175 175
         $this->enforce($lhs <= $this->number && $rhs >= $this->number)
176
-             ->orThrow('"%s" is not between "%s" and "%s"', $this->number, $lhs, $rhs);
176
+                ->orThrow('"%s" is not between "%s" and "%s"', $this->number, $lhs, $rhs);
177 177
 
178 178
         return $this;
179 179
     }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     public function isNotBetween(float $lhs, float $rhs): NumericEnsurance
188 188
     {
189 189
         $this->enforce($lhs > $this->number || $rhs < $this->number)
190
-             ->orThrow('"%s" is between "%s" and "%s"', $this->number, $lhs, $rhs);
190
+                ->orThrow('"%s" is between "%s" and "%s"', $this->number, $lhs, $rhs);
191 191
 
192 192
         return $this;
193 193
     }
Please login to merge, or discard this patch.
src/ClassEnsurance.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     public function implements (string $interface): ClassEnsurance
91 91
     {
92 92
         $this->enforce(array_key_exists($interface, class_implements($this->class)))
93
-             ->orThrow('"%s" does not implements interface "%s"', $this->class, $interface);
93
+                ->orThrow('"%s" does not implements interface "%s"', $this->class, $interface);
94 94
 
95 95
         return $this;
96 96
     }
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     public function implementsNot(string $interface): ClassEnsurance
104 104
     {
105 105
         $this->enforce(!array_key_exists($interface, class_implements($this->class)))
106
-             ->orThrow('"%s" does implements interface "%s"', $this->class, $interface);
106
+                ->orThrow('"%s" does implements interface "%s"', $this->class, $interface);
107 107
 
108 108
         return $this;
109 109
     }
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     public function isParentOf(string $class): ClassEnsurance
117 117
     {
118 118
         $this->enforce(array_key_exists($this->class, class_parents($class, true)))
119
-             ->orThrow('"%s" is not a parent of "%s"', $this->class, $class);
119
+                ->orThrow('"%s" is not a parent of "%s"', $this->class, $class);
120 120
 
121 121
         return $this;
122 122
     }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     public function isNotParentOf(string $class): ClassEnsurance
130 130
     {
131 131
         $this->enforce(!array_key_exists($this->class, class_parents($class, true)))
132
-             ->orThrow('"%s" is a parent of "%s"', $this->class, $class);
132
+                ->orThrow('"%s" is a parent of "%s"', $this->class, $class);
133 133
 
134 134
         return $this;
135 135
     }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     public function uses(string $trait): ClassEnsurance
143 143
     {
144 144
         $this->enforce(array_key_exists($trait, class_uses($this->class)))
145
-             ->orThrow('"%s" does not use trait "%s"', $this->class, $trait);
145
+                ->orThrow('"%s" does not use trait "%s"', $this->class, $trait);
146 146
 
147 147
         return $this;
148 148
     }
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     public function hasProperty(string $property): ClassEnsurance
156 156
     {
157 157
         $this->enforce(property_exists($this->class, $property))
158
-             ->orThrow('"%s" does not have a property "%s"', $this->class, $property);
158
+                ->orThrow('"%s" does not have a property "%s"', $this->class, $property);
159 159
 
160 160
         return $this;
161 161
     }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     public function hasMethod(string $method): ClassEnsurance
169 169
     {
170 170
         $this->enforce(method_exists($this->class, $method))
171
-             ->orThrow('"%s" does not have a method "%s"', $this->class, $method);
171
+                ->orThrow('"%s" does not have a method "%s"', $this->class, $method);
172 172
 
173 173
         return $this;
174 174
     }
Please login to merge, or discard this patch.