diff options
Diffstat (limited to 'main/app/system/Bakery/Command/Bake.php')
-rw-r--r-- | main/app/system/Bakery/Command/Bake.php | 150 |
1 files changed, 75 insertions, 75 deletions
diff --git a/main/app/system/Bakery/Command/Bake.php b/main/app/system/Bakery/Command/Bake.php index d12dccd..999171c 100644 --- a/main/app/system/Bakery/Command/Bake.php +++ b/main/app/system/Bakery/Command/Bake.php @@ -1,76 +1,76 @@ -<?php -/** - * UserFrosting (http://www.userfrosting.com) - * - * @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; -use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Component\Console\Input\InputArgument; -use Symfony\Component\Console\Input\InputOption; -use UserFrosting\System\Bakery\BaseCommand; - -/** - * Bake command. - * Shortcut to run multiple commands at once - * - * @author Alex Weissman (https://alexanderweissman.com) - */ -class Bake extends BaseCommand -{ - /** - * @var string Path to the build/ directory - */ - protected $buildPath; - - /** - * @var String $ufArt The UserFrosting ASCII art. - */ - public $title = " - _ _ ______ _ _ -| | | | | ___| | | (_) -| | | |___ ___ _ __| |_ _ __ ___ ___| |_ _ _ __ __ _ -| | | / __|/ _ \ '__| _| '__/ _ \/ __| __| | '_ \ / _` | -| |_| \__ \ __/ | | | | | | (_) \__ \ |_| | | | | (_| | - \___/|___/\___|_| \_| |_| \___/|___/\__|_|_| |_|\__, | - __/ | - |___/"; - - /** - * {@inheritDoc} - */ - protected function configure() { - $this->setName("bake") - ->setDescription("UserFrosting installation command") - ->setHelp("This command combine the <info>debug</info>, <info>migrate</info> and <info>build-assets</info> commands."); - } - - /** - * {@inheritDoc} - */ - protected function execute(InputInterface $input, OutputInterface $output) { - $this->io->writeln("<info>{$this->title}</info>"); - - $command = $this->getApplication()->find('setup'); - $command->run($input, $output); - - $command = $this->getApplication()->find('debug'); - $command->run($input, $output); - - $command = $this->getApplication()->find('migrate'); - $command->run($input, $output); - - $command = $this->getApplication()->find('create-admin'); - $command->run($input, $output); - - $command = $this->getApplication()->find('build-assets'); - $command->run($input, $output); - - $command = $this->getApplication()->find('clear-cache'); - $command->run($input, $output); - } +<?php
+/**
+ * UserFrosting (http://www.userfrosting.com)
+ *
+ * @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;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputOption;
+use UserFrosting\System\Bakery\BaseCommand;
+
+/**
+ * Bake command.
+ * Shortcut to run multiple commands at once
+ *
+ * @author Alex Weissman (https://alexanderweissman.com)
+ */
+class Bake extends BaseCommand
+{
+ /**
+ * @var string Path to the build/ directory
+ */
+ protected $buildPath;
+
+ /**
+ * @var String $ufArt The UserFrosting ASCII art.
+ */
+ public $title = "
+ _ _ ______ _ _
+| | | | | ___| | | (_)
+| | | |___ ___ _ __| |_ _ __ ___ ___| |_ _ _ __ __ _
+| | | / __|/ _ \ '__| _| '__/ _ \/ __| __| | '_ \ / _` |
+| |_| \__ \ __/ | | | | | | (_) \__ \ |_| | | | | (_| |
+ \___/|___/\___|_| \_| |_| \___/|___/\__|_|_| |_|\__, |
+ __/ |
+ |___/";
+
+ /**
+ * {@inheritDoc}
+ */
+ protected function configure() {
+ $this->setName("bake")
+ ->setDescription("UserFrosting installation command")
+ ->setHelp("This command combine the <info>debug</info>, <info>migrate</info> and <info>build-assets</info> commands.");
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ protected function execute(InputInterface $input, OutputInterface $output) {
+ $this->io->writeln("<info>{$this->title}</info>");
+
+ $command = $this->getApplication()->find('setup');
+ $command->run($input, $output);
+
+ $command = $this->getApplication()->find('debug');
+ $command->run($input, $output);
+
+ $command = $this->getApplication()->find('migrate');
+ $command->run($input, $output);
+
+ $command = $this->getApplication()->find('create-admin');
+ $command->run($input, $output);
+
+ $command = $this->getApplication()->find('build-assets');
+ $command->run($input, $output);
+
+ $command = $this->getApplication()->find('clear-cache');
+ $command->run($input, $output);
+ }
}
\ No newline at end of file |