diff options
author | Marvin Borner | 2018-05-23 22:23:28 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-23 22:23:28 +0200 |
commit | b66a61addb6c8e66cb26fcf74b532d68891267e4 (patch) | |
tree | 05e9449ff25bdc98f68105f41923ccb9f6ef5095 /main/app/system/Sprinkle/Sprinkle.php | |
parent | 1d4ef435177a5f9b6d1a289800d933e49be0c550 (diff) |
Refactored code, many fixes and improvements in chat backend+frontend
Diffstat (limited to 'main/app/system/Sprinkle/Sprinkle.php')
-rw-r--r-- | main/app/system/Sprinkle/Sprinkle.php | 7 |
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; } } |