Files
glastree/vendor/sabre/http/.php_cs.dist
T

12 lines
194 B
PHP
Raw Normal View History

2026-05-28 09:34:28 +02:00
<?php
$config = PhpCsFixer\Config::create();
$config->getFinder()
->exclude('vendor')
->in(__DIR__);
$config->setRules([
'@PSR1' => true,
'@Symfony' => true
]);
return $config;