PhpCsFixer\Console\Application::__construct PHP Method

__construct() public method

Constructor.
public __construct ( )
    public function __construct()
    {
        error_reporting(-1);
        parent::__construct('PHP CS Fixer', self::VERSION);
        $this->add(new DescribeCommand());
        $this->add(new FixCommand());
        $this->add(new ReadmeCommand());
        $this->add(new SelfUpdateCommand());
    }