| Total Complexity | 8 |
| Total Lines | 64 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class InvalidResponseDocument implements DocumentInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @return \Swis\JsonApi\Client\Interfaces\DataInterface |
||
| 12 | */ |
||
| 13 | public function getData() |
||
| 14 | { |
||
| 15 | return null; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return \Swis\JsonApi\Client\Errors\ErrorCollection |
||
| 20 | */ |
||
| 21 | public function getErrors(): ErrorCollection |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return bool |
||
| 28 | */ |
||
| 29 | public function hasErrors(): bool |
||
| 30 | { |
||
| 31 | return false; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return mixed |
||
| 36 | */ |
||
| 37 | public function getMeta(): array |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return mixed |
||
| 44 | */ |
||
| 45 | public function getLinks(): array |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return mixed |
||
| 52 | */ |
||
| 53 | public function getIncluded(): Collection |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return mixed |
||
| 60 | */ |
||
| 61 | public function getJsonapi() |
||
| 64 | } |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @return array |
||
| 68 | */ |
||
| 69 | public function toArray(): array |
||
| 74 |