JonathanTorres\Construct\Construct::phpcs PHP Method

phpcs() protected method

Generate PHP CS Fixer configuration file and add package to the development requirements.
protected phpcs ( ) : void
return void
    protected function phpcs()
    {
        $this->developmentRequirements[] = 'friendsofphp/php-cs-fixer';
        $this->file->copy(__DIR__ . '/stubs/phpcs.stub', $this->projectLower . '/' . '.php_cs');
        $this->gitIgnores[] = '.php_cs.cache';
        $this->exportIgnores[] = '.php_cs';
    }