add php-styler
Signed-off-by: lubiana <lubiana123@gmail.com>
This commit is contained in:
parent
6a79d7d446
commit
1667fd3253
2 changed files with 11 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@
|
|||
/var/routesCache
|
||||
/var/listenerCache
|
||||
/.phpactor.json
|
||||
/.php-styler.cache
|
||||
|
|
10
php-styler.php
Normal file
10
php-styler.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
use PhpStyler\Config;
|
||||
use PhpStyler\Files;
|
||||
use PhpStyler\Styler;
|
||||
|
||||
return new Config(
|
||||
files: new Files(__DIR__ . '/src'),
|
||||
styler: new Styler(),
|
||||
cache: __DIR__ . '/.php-styler.cache',
|
||||
);
|
Loading…
Reference in a new issue