for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Abacaphiliac\Compliments;
class Application extends \Symfony\Component\Console\Application
{
/**
* @return static
* @throws \Symfony\Component\Console\Exception\LogicException
*/
public static function factory()
$application = new static();
$application->add(new RandomComplimentCommand());
return $application;
}