diff options
Diffstat (limited to 'main/app/system/Bakery/Command/Test.php')
-rw-r--r-- | main/app/system/Bakery/Command/Test.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/main/app/system/Bakery/Command/Test.php b/main/app/system/Bakery/Command/Test.php index 553fddd..dde187f 100644 --- a/main/app/system/Bakery/Command/Test.php +++ b/main/app/system/Bakery/Command/Test.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\Command; use Symfony\Component\Console\Input\InputInterface; @@ -29,18 +30,16 @@ class Test extends BaseCommand /** * {@inheritDoc} */ - protected function configure() - { + protected function configure() { $this->setName("test") - ->setDescription("Run tests") - ->setHelp("Run php unit tests"); + ->setDescription("Run tests") + ->setHelp("Run php unit tests"); } /** * {@inheritDoc} */ - protected function execute(InputInterface $input, OutputInterface $output) - { + protected function execute(InputInterface $input, OutputInterface $output) { $this->io->title("UserFrosting's Tester"); // Get command |