PHP code example of stolt / php-cs-fixer-custom-fixers
1. Go to this page and download the library: Download stolt/php-cs-fixer-custom-fixers 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/ */
stolt / php-cs-fixer-custom-fixers example snippets
declare(strict_types=1);
return (new \PhpCsFixer\Config())
->registerCustomFixers(new \Stolt\PhpCsFixer\Fixers())
->setRules([
'Stolt/namespace_prefix_internal_php_functions' => true,
]);