diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-10-17 22:31:04 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-10-17 22:31:04 -0400 |
| commit | ad55e6ede5fab449c91aced8c1a42ae4ee7b809c (patch) | |
| tree | 744fc7ba3d82c830dd90ec4de992385607b9a832 /app/Model/NotificationType.php | |
| parent | 09da289c2fb18475f372bee24e885617da484e0b (diff) | |
Remove exit expression in database provider
Diffstat (limited to 'app/Model/NotificationType.php')
| -rw-r--r-- | app/Model/NotificationType.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/NotificationType.php b/app/Model/NotificationType.php index bc9c6fdc..9d8317b7 100644 --- a/app/Model/NotificationType.php +++ b/app/Model/NotificationType.php @@ -120,7 +120,7 @@ abstract class NotificationType extends Base { $classes = $this->classes; - return array_filter($types, function($type) use ($classes) { + return array_filter($types, function ($type) use ($classes) { return isset($classes[$type]); }); } |
