mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-28 19:20:56 +00:00
15 lines
270 B
PHP
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;
|