aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/system/Sprinkle/Sprinkle.php
diff options
context:
space:
mode:
Diffstat (limited to 'main/app/system/Sprinkle/Sprinkle.php')
-rw-r--r--main/app/system/Sprinkle/Sprinkle.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/main/app/system/Sprinkle/Sprinkle.php b/main/app/system/Sprinkle/Sprinkle.php
index 4707025..1f1820b 100644
--- a/main/app/system/Sprinkle/Sprinkle.php
+++ b/main/app/system/Sprinkle/Sprinkle.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\Sprinkle;
use Interop\Container\ContainerInterface;
@@ -30,8 +31,7 @@ class Sprinkle implements EventSubscriberInterface
*
* @return array
*/
- public static function getSubscribedEvents()
- {
+ public static function getSubscribedEvents() {
$methods = get_class_methods(get_called_class());
$list = [];
@@ -49,8 +49,7 @@ class Sprinkle implements EventSubscriberInterface
*
* @param ContainerInterface $ci The global container object, which holds all your services.
*/
- public function __construct(ContainerInterface $ci)
- {
+ public function __construct(ContainerInterface $ci) {
$this->ci = $ci;
}
}