for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is, guess what, part of WebHelper.
*
* (c) James <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace JamesRezo\WebHelper\Console;
use Symfony\Component\Console\Application as BaseApplication;
use JamesRezo\WebHelper\Command\GenerateCommand;
use JamesRezo\WebHelper\Command\DetectCommand;
use JamesRezo\WebHelper\Command\AnalyzeCommand;
* The CLI Application.
class Application extends BaseApplication
{
* Base Constructor.
public function __construct()
parent::__construct();
$this->setName('WebHelper');
$this->setVersion('0.2');
$this->add(new GenerateCommand());
$this->add(new DetectCommand());
$this->add(new AnalyzeCommand());
}