PHP code example of narrowspark / php-cs-fixer-config
1. Go to this page and download the library: Download narrowspark/php-cs-fixer-config library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
narrowspark / php-cs-fixer-config example snippets
declare(strict_types=1);
use Narrowspark\CS\Config\Config;
$config = new Config();
$config->getFinder()
->files()
->in(__DIR__)
->exclude('.build')
->exclude('vendor')
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
$config->setCacheFile(__DIR__ . '/.build/php-cs-fixer/php_cs.cache');
return $config;
diff
declare(strict_types=1);
use Narrowspark\CS\Config\Config;
+$header = <<<EOF
+Copyright (c) 2020 Narrowspark
+
+For the full copyright and license information, please view
+the LICENSE file that was distributed with this source code.
+EOF;
-$config = new Narrowspark\CS\Config\Config();
+$config = new Narrowspark\CS\Config\Config($header);
$config->setCacheFile(__DIR__ . '/.build/php-cs-fixer/php_cs.cache');
return $config;
diff
declare(strict_types=1);
use Narrowspark\CS\Config\Config;
- $config = new Config();
+ $config = new Config(null /* if you dont need a header */, [
'mb_str_functions' => false,
'strict_comparison' => false,
]);
$config->getFinder()
->files()
->in(__DIR__)
->exclude('.build')
->exclude('vendor')
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
$config->setCacheFile(__DIR__ . '/.build/php-cs-fixer/php_cs.cache');
return $config;