Completed
Push — master ( c01a7c...c6692e )
by Ryosuke
02:45
created
src/Proxy.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
                                         ->getValue($this->ins);
115 115
                         } catch (ProxyException $e) {
116 116
                             try {
117
-                                return $this->__call('__get', [$name]);
117
+                                return $this->__call('__get', [ $name ]);
118 118
                             } catch (ProxyException $_) {
119 119
                                 throw $e;
120 120
                             }
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                             $property->setValue($this->ins, $value);
129 129
                         } catch (ProxyException $e) {
130 130
                             try {
131
-                                $this->__call('__set', [$name, $value]);
131
+                                $this->__call('__set', [ $name, $value ]);
132 132
                                 return;
133 133
                             } catch (ProxyException $_) { }
134 134
                             if (isset($property)) {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
                                                             // fallback to the actual property.
135 135
                             if (isset($property)) {
136 136
                                 throw $e; // Static property exists,
137
-                                          // so you cannot create a new field.
137
+                                            // so you cannot create a new field.
138 138
                             } else {
139 139
                                 $this->ins->$name = $value; // Property does not exists
140 140
                                                             // so you can create a new field.
Please login to merge, or discard this patch.