mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
12 lines
233 B
PHP
12 lines
233 B
PHP
|
<?php
|
||
|
|
||
|
require_once __DIR__ . '/vendor/autoload.php';
|
||
|
|
||
|
$finder = PhpCsFixer\Finder::create()
|
||
|
->in(__DIR__)
|
||
|
;
|
||
|
|
||
|
return Retailcrm\PhpCsFixer\Defaults::rules()
|
||
|
->setFinder($finder)
|
||
|
->setCacheFile(__DIR__ . '/.php_cs.cache');
|