diff options
Diffstat (limited to 'main/app/system/SlimAppEvent.php')
-rw-r--r-- | main/app/system/SlimAppEvent.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/main/app/system/SlimAppEvent.php b/main/app/system/SlimAppEvent.php index f1217a5..4bec240 100644 --- a/main/app/system/SlimAppEvent.php +++ b/main/app/system/SlimAppEvent.php @@ -5,6 +5,7 @@ * @link https://github.com/userfrosting/UserFrosting * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License) */ + namespace UserFrosting\System; use RocketTheme\Toolbox\Event\Event; @@ -17,13 +18,11 @@ class SlimAppEvent extends Event { protected $app; - public function __construct(App $app) - { + public function __construct(App $app) { $this->app = $app; } - public function getApp() - { + public function getApp() { return $this->app; } } |