@@ -167,7 +167,7 @@ |
||
167 | 167 | */ |
168 | 168 | public function existenceCheck() |
169 | 169 | { |
170 | - if (! in_array($this->getStatusCode(), [200, 404])) { |
|
170 | + if ( ! in_array($this->getStatusCode(), [200, 404])) { |
|
171 | 171 | throw new UnexpectedStatusException($this); |
172 | 172 | } |
173 | 173 |
@@ -48,7 +48,7 @@ |
||
48 | 48 | public function fill($data) |
49 | 49 | { |
50 | 50 | foreach ($data as $key => $value) { |
51 | - if (! property_exists($this, $key)) { |
|
51 | + if ( ! property_exists($this, $key)) { |
|
52 | 52 | throw new InvalidPropertyException($key . ' is not a property on ' . get_class($this)); |
53 | 53 | } |
54 | 54 |
@@ -162,7 +162,7 @@ |
||
162 | 162 | { |
163 | 163 | $class = __NAMESPACE__ . '\\ResourceClients\\' . ucfirst($property) . 'Client'; |
164 | 164 | |
165 | - if (! class_exists($class)) { |
|
165 | + if ( ! class_exists($class)) { |
|
166 | 166 | throw new ClassNotFoundException($class); |
167 | 167 | } |
168 | 168 |