Files
php-curl-class/tests/.php-cs-fixer.php
T

15 lines
270 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()
->in(dirname(__DIR__));
$config = new PhpCsFixer\Config();
$config
->setRules([
'array_syntax' => ['syntax' => 'short'],
'no_unused_imports' => true,
])
->setFinder($finder);
return $config;