for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Geotools library.
*
* (c) Antoine Corcy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\Geotools\CLI;
use League\Geotools\CLI\Output\ConsoleOutput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* @author Antoine Corcy <[email protected]>
class Application extends \Symfony\Component\Console\Application
{
* @var string
private $logo = '
________ __ .__
/ _____/ ____ _____/ |_ ____ ____ | | ______
/ \ ____/ __ \/ _ \ __\/ _ \ / _ \| | / ___/
\ \_\ \ ___( <_> ) | ( <_> | <_> ) |__\___ \
\______ /\___ >____/|__| \____/ \____/|____/____ >
\/ \/ \/
';
* {@inheritdoc}
public function getHelp()
return $this->logo . parent::getHelp();
}
public function run(InputInterface $input = null, OutputInterface $output = null)
parent::run($input, new ConsoleOutput);