mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 17:22:41 +01:00
15 lines
285 B
Plaintext
15 lines
285 B
Plaintext
|
<?php
|
||
|
|
||
|
$finder = Symfony\CS\Finder\DefaultFinder::create()
|
||
|
->in(__DIR__);
|
||
|
|
||
|
$fixers = [
|
||
|
'short_array_syntax',
|
||
|
];
|
||
|
|
||
|
return Symfony\CS\Config\Config::create()
|
||
|
->setUsingCache(true)
|
||
|
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
|
||
|
->fixers($fixers)
|
||
|
->finder($finder);
|