| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 6 | public function getEntityPagesFromResult( $resultJson ): array { |
|
| 21 | 6 | $resultData = json_decode( $resultJson, true ); |
|
| 22 | |||
| 23 | 6 | if ( !is_array( $resultData ) ) { |
|
| 24 | 1 | return []; |
|
| 25 | } |
||
| 26 | |||
| 27 | 5 | if ( array_key_exists( 'entities', $resultData ) ) { |
|
| 28 | 4 | return $this->constructEntityPages( $resultData['entities'] ); |
|
| 29 | } |
||
| 30 | |||
| 31 | 1 | return []; |
|
| 32 | } |
||
| 33 | |||
| 61 |