Files
folio/.php-cs-fixer.dist.php

13 lines
308 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()->in(__DIR__);
return (new PhpCsFixer\Config())
->setRiskyAllowed(true)
->setRules([
'@PSR12' => true,
'strict_param' => true,
'declare_strict_types' => true,
'no_unused_imports' => true,
'single_quote' => true,
])
->setFinder($finder);