@@ -114,7 +114,7 @@ discard block |
||
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 |
||
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)) { |
@@ -134,7 +134,7 @@ |
||
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. |