@@ -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)) { |