Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | 9 | private function renderNotification(Notification $notification) |
|
48 | { |
||
49 | 9 | $classNameSuffix = $this->getClassNameSuffix($notification->getType()); |
|
50 | return <<<HTML |
||
51 | 9 | <div class="alert alert-{$classNameSuffix}" role="alert"> |
|
52 | 9 | {$notification->getMessage()} |
|
53 | </div> |
||
54 | |||
55 | 9 | HTML; |
|
56 | } |
||
57 | |||
71 |