diff options
Diffstat (limited to 'main/app/sprinkles/core/src/Controller')
-rw-r--r-- | main/app/sprinkles/core/src/Controller/SimpleController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/app/sprinkles/core/src/Controller/SimpleController.php b/main/app/sprinkles/core/src/Controller/SimpleController.php index b0fc152..1e3303a 100644 --- a/main/app/sprinkles/core/src/Controller/SimpleController.php +++ b/main/app/sprinkles/core/src/Controller/SimpleController.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\Sprinkle\Core\Controller; use Interop\Container\ContainerInterface; @@ -29,8 +30,7 @@ class SimpleController * * @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; } } |