@@ -9,7 +9,7 @@ |
||
| 9 | 9 | { |
| 10 | 10 | protected function setEnabledProperty($value) |
| 11 | 11 | { |
| 12 | - if (! is_bool($value)) { |
|
| 12 | + if (!is_bool($value)) { |
|
| 13 | 13 | throw new InvalidArgumentException('Credits Enabled must be : boolean'); |
| 14 | 14 | } |
| 15 | 15 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | { |
| 19 | 19 | $availableTypes = array_keys($this->config['available_types']); |
| 20 | 20 | |
| 21 | - if (! in_array($type, $availableTypes)) { |
|
| 21 | + if (!in_array($type, $availableTypes)) { |
|
| 22 | 22 | throw new UnavailableTypeException; |
| 23 | 23 | } |
| 24 | 24 | |