@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | public function render(Notifications $notifications) |
| 26 | 26 | { |
| 27 | 27 | $output = ''; |
| 28 | - foreach($notifications as $notification) { |
|
| 28 | + foreach ($notifications as $notification) { |
|
| 29 | 29 | $output .= $this->renderNotification($notification); |
| 30 | 30 | } |
| 31 | 31 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | private function getClassNameSuffix($type) |
| 55 | 55 | { |
| 56 | - if(!isset($this->classNameSuffixMap[$type])) { |
|
| 56 | + if (!isset($this->classNameSuffixMap[$type])) { |
|
| 57 | 57 | return 'default'; |
| 58 | 58 | } |
| 59 | 59 | |