@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | if (array_key_exists($name, $this->properties)) { |
| 28 | 28 | return $this->properties[$name]; |
| 29 | 29 | } |
| 30 | - throw new Fio\TransactionPropertyException('Property does not exists. ' . $name); |
|
| 30 | + throw new Fio\TransactionPropertyException('Property does not exists. '.$name); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public function clearTemporaryValues() |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | public function bindProperty($name, $type, $value) |
| 39 | 39 | { |
| 40 | - $method = 'set' . ucfirst($name); |
|
| 40 | + $method = 'set'.ucfirst($name); |
|
| 41 | 41 | if (method_exists($this, $method)) { |
| 42 | 42 | $value = $this->{$method}($value); |
| 43 | 43 | } elseif ($value !== NULL) { |