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/Bakery/BaseCommand.php | |
parent | 1d4ef435177a5f9b6d1a289800d933e49be0c550 (diff) |
Refactored code, many fixes and improvements in chat backend+frontend
Diffstat (limited to 'main/app/system/Bakery/BaseCommand.php')
-rw-r--r-- | main/app/system/Bakery/BaseCommand.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/main/app/system/Bakery/BaseCommand.php b/main/app/system/Bakery/BaseCommand.php index 1a59141..bc1c005 100644 --- a/main/app/system/Bakery/BaseCommand.php +++ b/main/app/system/Bakery/BaseCommand.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\Bakery; use Symfony\Component\Console\Command\Command; @@ -42,8 +43,7 @@ abstract class BaseCommand extends Command /** * {@inheritDoc} */ - protected function initialize(InputInterface $input, OutputInterface $output) - { + protected function initialize(InputInterface $input, OutputInterface $output) { $this->io = new SymfonyStyle($input, $output); $this->projectRoot = \UserFrosting\ROOT_DIR; } @@ -51,8 +51,7 @@ abstract class BaseCommand extends Command /** * Setup the global container object */ - public function setContainer(ContainerInterface $ci) - { + public function setContainer(ContainerInterface $ci) { $this->ci = $ci; } } |