Conditions | 4 |
Paths | 8 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
32 | private function serializeItem() { |
||
33 | $serialization = [ 'id' => $this->entity->ids ]; |
||
34 | |||
35 | if ( $this->entity->label !== '' ) { |
||
36 | $serialization['label'] = $this->entity->label; |
||
37 | } |
||
38 | |||
39 | if ( $this->entity->description !== '' ) { |
||
40 | $serialization['description'] = $this->entity->description; |
||
41 | } |
||
42 | |||
43 | if ( !empty( $this->entity->aliases ) ) { |
||
44 | $serialization['aliases'] = $this->entity->aliases; |
||
45 | } |
||
46 | |||
47 | return $serialization; |
||
48 | } |
||
49 | |||
50 | } |