mirror of https://github.com/wallabag/wallabag.git
Use Config constructor instead of deprecated named one
This commit is contained in:
parent
5d736d874c
commit
ef9183f6c1
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
return PhpCsFixer\Config::create()
|
||||
$config = new PhpCsFixer\Config();
|
||||
return $config
|
||||
->setRiskyAllowed(true)
|
||||
->setRules([
|
||||
'@Symfony' => true,
|
||||
|
|
Loading…
Reference in New Issue