Conditions | 3 |
Paths | 4 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Tests | 13 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
35 | 1 | private function serializeElement( ItemListElement $element ) { |
|
36 | 1 | $summary = []; |
|
37 | 1 | $summary['id'] = $element->getItemId()->getSerialization(); |
|
38 | |||
39 | 1 | if ( $element->getLabel() !== null ) { |
|
40 | 1 | $summary['label'] = $element->getLabel(); |
|
41 | 1 | } |
|
42 | |||
43 | 1 | $summary['updated_at'] = $element->getLastUpdateTime(); |
|
44 | 1 | $summary['url'] = $element->getQueryrApiUrl(); |
|
45 | 1 | $summary['wikidata_url'] = $element->getWikidataUrl(); |
|
46 | |||
47 | 1 | if ( $element->getWikipediaPageUrl() !== null ) { |
|
48 | 1 | $summary['wikipedia_url'] = $element->getWikipediaPageUrl(); |
|
49 | 1 | } |
|
50 | |||
51 | 1 | return $summary; |
|
52 | } |
||
53 | |||
55 |