File ".php-cs-fixer.dist.php"
Full Path: /var/www/drive/php-http/httplug/.php-cs-fixer.dist.php
File size: 253 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/src')
->name('*.php')
;
$config = (new PhpCsFixer\Config())
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;
return $config;