diff options
Diffstat (limited to 'main/app/system/SlimAppEvent.php')
-rw-r--r-- | main/app/system/SlimAppEvent.php | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/main/app/system/SlimAppEvent.php b/main/app/system/SlimAppEvent.php index 4bec240..00ab898 100644 --- a/main/app/system/SlimAppEvent.php +++ b/main/app/system/SlimAppEvent.php @@ -1,28 +1,28 @@ -<?php -/** - * UserFrosting (http://www.userfrosting.com) - * - * @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; -use Slim\App; - -/** - * Used for events that need to access the Slim application. - */ -class SlimAppEvent extends Event -{ - protected $app; - - public function __construct(App $app) { - $this->app = $app; - } - - public function getApp() { - return $this->app; - } -} +<?php
+/**
+ * UserFrosting (http://www.userfrosting.com)
+ *
+ * @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;
+use Slim\App;
+
+/**
+ * Used for events that need to access the Slim application.
+ */
+class SlimAppEvent extends Event
+{
+ protected $app;
+
+ public function __construct(App $app) {
+ $this->app = $app;
+ }
+
+ public function getApp() {
+ return $this->app;
+ }
+}
|