Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | 3 | private function renderNotification(Notification $notification) |
|
40 | { |
||
41 | 3 | $classNameSuffix = $this->getClassNameSuffix($notification->getType()); |
|
42 | return <<<HTML |
||
43 | 3 | <div class="alert alert-{$classNameSuffix}" role="alert"> |
|
44 | 3 | {$notification->getMessage()} |
|
45 | </div> |
||
46 | |||
47 | 3 | HTML; |
|
48 | } |
||
49 | |||
63 |