@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | ) { |
70 | 70 | $this->parseParameters($parameters); |
71 | 71 | |
72 | - if (! $messageFactory) { |
|
72 | + if (!$messageFactory) { |
|
73 | 73 | $messageFactory = MessageFactoryDiscovery::find(); |
74 | 74 | } |
75 | 75 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | protected function getQueryParameter($key) |
156 | 156 | { |
157 | - if (! array_key_exists($key, $this->queryParameters)) { |
|
157 | + if (!array_key_exists($key, $this->queryParameters)) { |
|
158 | 158 | return null; |
159 | 159 | } |
160 | 160 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | foreach ($parameters as $key => $value) { |
220 | 220 | $methodName = 'set' . ucfirst($key); |
221 | 221 | |
222 | - if (! method_exists($this, $methodName)) { |
|
222 | + if (!method_exists($this, $methodName)) { |
|
223 | 223 | continue; |
224 | 224 | } |
225 | 225 | |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | */ |
290 | 290 | public function compileHttpRequest() |
291 | 291 | { |
292 | - if (! $this->validate()) { |
|
292 | + if (!$this->validate()) { |
|
293 | 293 | throw new InvalidRequestException('One or more required parameters are not set.'); |
294 | 294 | } |
295 | 295 |