@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | $headerValid = array_key_exists('jsonrpc', $payload) && $payload['jsonrpc'] === '2.0'; |
| 81 | - $methodValid = array_key_exists('method', $payload) && is_string($payload['method']); |
|
| 81 | + $methodValid = array_key_exists('method', $payload) && is_string($payload['method']); |
|
| 82 | 82 | $idValid = array_key_exists('id', $payload); |
| 83 | 83 | |
| 84 | 84 | // This member MAY be omitted |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | $headerValid = array_key_exists('jsonrpc', $payload) && $payload['jsonrpc'] === '2.0'; |
| 104 | - $methodValid = array_key_exists('method', $payload) && is_string($payload['method']); |
|
| 104 | + $methodValid = array_key_exists('method', $payload) && is_string($payload['method']); |
|
| 105 | 105 | $idValid = !array_key_exists('id', $payload); |
| 106 | 106 | |
| 107 | 107 | // This member MAY be omitted |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | public function __construct() |
| 19 | 19 | { |
| 20 | - $this->preRequest = Interceptor::createBase(); |
|
| 20 | + $this->preRequest = Interceptor::createBase(); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | */ |
| 38 | 38 | public function request(string $request): string |
| 39 | 39 | { |
| 40 | - $request = $this->preRequest($request); |
|
| 40 | + $request = $this->preRequest($request); |
|
| 41 | 41 | return $this->send($request); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -217,10 +217,10 @@ |
||
| 217 | 217 | foreach ($results as $result) { |
| 218 | 218 | if ($result instanceof Result) { |
| 219 | 219 | /** @var Result $result */ |
| 220 | - $resultSequence[ $callMap[$result->getId()] ] = $result->getResult(); |
|
| 220 | + $resultSequence[$callMap[$result->getId()]] = $result->getResult(); |
|
| 221 | 221 | } elseif ($result instanceof Error) { |
| 222 | 222 | /** @var Error $result */ |
| 223 | - $resultSequence[ $callMap[$result->getId()] ] = null; |
|
| 223 | + $resultSequence[$callMap[$result->getId()]] = null; |
|
| 224 | 224 | } |
| 225 | 225 | } |
| 226 | 226 | ksort($resultSequence); |