Completed
Push — master ( 6154f9...3b8329 )
by Nelson
11:47
created
src/PropertiesHandler.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
 
145 145
             if (property_exists($this, $name) === false) {
146 146
                 $args = [
147
-                         'class'    => typeof($this)->Name,
148
-                         'property' => $name,
147
+                            'class'    => typeof($this)->Name,
148
+                            'property' => $name,
149 149
                         ];
150 150
 
151 151
                 $msg = nml_msg('Property "{class}::{property}" do not exists.', $args);
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
 
177 177
             if (method_exists($this, $name) === false) {
178 178
                 $args = [
179
-                         'class'  => typeof($this)->Name,
180
-                         'method' => $name,
179
+                            'class'  => typeof($this)->Name,
180
+                            'method' => $name,
181 181
                         ];
182 182
 
183 183
                 $msg = nml_msg('Method "{class}::{method}" do not exists.', $args);
@@ -206,8 +206,8 @@  discard block
 block discarded – undo
206 206
                 $setter = $this->ensureMethodExists($setter);
207 207
             } catch (BadMethodCallException $error) {
208 208
                 $args = [
209
-                         'class' => typeof($this)->Name,
210
-                         'name'  => $name,
209
+                            'class' => typeof($this)->Name,
210
+                            'name'  => $name,
211 211
                         ];
212 212
 
213 213
                 $msg = nml_msg('Property "{class}::{name}" has not a setter.', $args);
@@ -236,8 +236,8 @@  discard block
 block discarded – undo
236 236
                 $getter = $this->ensureMethodExists($getter);
237 237
             } catch (BadMethodCallException $error) {
238 238
                 $args = [
239
-                         'class' => typeof($this)->Name,
240
-                         'name'  => $name,
239
+                            'class' => typeof($this)->Name,
240
+                            'name'  => $name,
241 241
                         ];
242 242
 
243 243
                 $msg = nml_msg('Property "{class}::{name}" has not a getter.', $args);
Please login to merge, or discard this patch.