for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace eXpansion\Framework\Core\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class eXpansion....
*
* @package eXpansion\Framework\Core\Command
*/
class RunCommand extends ContainerAwareCommand
{
protected function configure()
$this->setName('eXpansion:run')
->setDescription("Run eXpansion on your server.");
}
protected function execute(InputInterface $input, OutputInterface $output)
$this->getContainer()->get('expansion.framework.core.services.application')
->init($output)
->run();