Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
11 | 1 | public function alertBox(array $message) |
|
12 | { |
||
13 | 1 | $class = $this->getClass($message); |
|
14 | 1 | $alert = '<div class="alert ' . $class . '"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>' . $this->renderMessage($message) . '</div>'; |
|
15 | |||
16 | 1 | return $alert; |
|
17 | } |
||
18 | |||
53 | } |