| Conditions | 4 |
| Paths | 4 |
| Total Lines | 22 |
| Code Lines | 15 |
| Lines | 22 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | $this->actions[0] = new Action($label, $text, $type); |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $label |
||
| 48 | * @param string $text |
||
| 49 | * @param string $type |
||
| 50 | */ |
||
| 51 | public function addNoAction($label = 'No', $text = 'no', $type = Action::TYPE_MESSAGE) |
||
| 52 | { |
||
| 53 | $this->actions[1] = new Action($label, $text, $type); |
||
| 54 | } |
||
| 55 | } |
||
| 56 |