for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\ComposerConfigManager\Infrastructure;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Command\Command;
class SfApplication extends Application
{
/**
* @param Command $command
*/
public function __construct(Command $command)
parent::__construct();
$this->add($command);
$this->setDefaultCommand($command->getName(), true);
}