Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 13 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
77 | 28 | public function getErrorShapeDefinition() : array |
|
78 | { |
||
79 | 28 | return [ |
|
80 | 28 | 'type' => 'object', |
|
81 | 28 | 'required' => [ |
|
82 | 28 | 'code', |
|
83 | 28 | 'message', |
|
84 | 28 | ], |
|
85 | 28 | 'properties' => [ |
|
86 | 28 | 'code' => [ |
|
87 | 28 | 'type' => 'number', |
|
88 | 28 | ], |
|
89 | 28 | 'message' => [ |
|
90 | 28 | 'type' => 'string', |
|
91 | 28 | ], |
|
96 |