Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
42 | public function toArray() : array |
||
43 | { |
||
44 | $result = [ |
||
45 | 'description' => $this->description, |
||
46 | 'required' => $this->required, |
||
47 | ]; |
||
48 | |||
49 | foreach ($this->content as $value) { |
||
50 | $result['content'][$value->mediaType] = $value->toArray(); |
||
51 | } |
||
52 | |||
53 | return $result; |
||
54 | } |
||
56 |