@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | 'post' => $payload |
96 | 96 | ]; |
97 | 97 | |
98 | - if( isset($this->requestBody['payload']) ) { |
|
98 | + if (isset($this->requestBody['payload'])) { |
|
99 | 99 | array_merge($this->requestBody['payload'], $payloadPost); |
100 | 100 | return; |
101 | 101 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function getRequestBody() |
122 | 122 | { |
123 | - if( isset($this->requestBody['payload']) ) { |
|
123 | + if (isset($this->requestBody['payload'])) { |
|
124 | 124 | return $this->requestBody['payload']; |
125 | 125 | } |
126 | 126 | return $this->requestBody; |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | ), |
173 | 173 | ); |
174 | 174 | |
175 | - $this->setRoutes((object)$routesArray); |
|
175 | + $this->setRoutes((object) $routesArray); |
|
176 | 176 | |
177 | 177 | return $this->getRoutes(); |
178 | 178 | } |