for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the PPI Framework.
*
* @copyright Copyright (c) 2011-2016 Paul Dragoonis <[email protected]>
* @license http://opensource.org/licenses/mit-license.php MIT
* @link http://www.ppi.io
*/
namespace PPI\Framework\Console\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
* Base class for all commands.
* @author Vítor Brandão <[email protected]>
abstract class AbstractCommand extends ContainerAwareCommand
{
* @return \Zend\ServiceManager\ServiceManagerInterface
protected function getServiceManager()
return $this->getContainer();
}