mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
15 lines
285 B
PHP
15 lines
285 B
PHP
<?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);
|