| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | 1 | public function getRequestShapeDefinition() |
|
| 13 | { |
||
| 14 | return [ |
||
| 15 | 1 | 'type' => 'object', |
|
| 16 | 'required' => ['jsonrpc', 'method'], |
||
| 17 | 'properties' => [ |
||
| 18 | 'id' => [ |
||
| 19 | 'example' => 'req_id', |
||
| 20 | 'type' => 'string', |
||
| 21 | ], |
||
| 22 | 'jsonrpc' => [ |
||
| 23 | 'type' => 'string', |
||
| 24 | 'example' => '2.0', |
||
| 25 | ], |
||
| 26 | 'method' => ['type' => 'string'], |
||
| 27 | 'params' => ['title' => 'Method parameters'], |
||
| 28 | ], |
||
| 70 |