diff options
Diffstat (limited to 'app/Model')
-rw-r--r-- | app/Model/NotificationType.php | 2 | ||||
-rw-r--r-- | app/Model/UserMetadata.php | 2 |
2 files changed, 2 insertions, 2 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]); }); } diff --git a/app/Model/UserMetadata.php b/app/Model/UserMetadata.php index 6f1222e2..411837bd 100644 --- a/app/Model/UserMetadata.php +++ b/app/Model/UserMetadata.php @@ -27,4 +27,4 @@ class UserMetadata extends Metadata { return 'user_id'; } -}
\ No newline at end of file +} |