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[] $commandList
*/
public function __construct(array $commandList = [])
parent::__construct();
$this->addCommands($commandList);
}