Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 10 |
Ratio | 100 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
48 | 1 | View Code Duplication | public function jsonSerialize() |
49 | { |
||
50 | return [ |
||
51 | 1 | 'title' => $this->getTitle(), |
|
52 | 1 | 'subtitle' => $this->getSubtitle(), |
|
53 | 1 | 'image_url' => $this->getImageUrl(), |
|
54 | 1 | 'buttons' => $this->button ? [$this->button] : null, |
|
55 | 1 | 'default_action' => $this->defaultAction, |
|
56 | 1 | ]; |
|
57 | } |
||
58 | } |
||
59 |