for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Padawan\Command;
use Symfony\Component\Console\Command\Command;
use Padawan\Framework\Application\Cli;
abstract class CliCommand extends Command
{
public function getContainer()
return $this->getApplication()->getContainer();
}
public function get($name)
return $this->getContainer()->get($name);
/**
* @return Cli
*/
public function getApplication()
return parent::getApplication();