| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function __construct($title, $text, $thumbnail, array $actions = []) |
||
| 43 | { |
||
| 44 | $this->title = $title; |
||
| 45 | $this->text = $text; |
||
| 46 | $this->thumbnail = $thumbnail; |
||
| 47 | |||
| 48 | foreach ($actions as $action) { |
||
| 49 | if (!$action instanceof Action) { |
||
| 50 | $action = new Action($action['label'], $action['value']); |
||
| 51 | } |
||
| 52 | |||
| 53 | $this->actions[] = $action; |
||
| 54 | } |
||
| 84 |