Update PHPCS and other dependencies.
This commit is contained in:
parent
82b7bff7f7
commit
30ab6ed692
5 changed files with 266 additions and 146 deletions
7
.php_cs
7
.php_cs
|
@ -24,6 +24,7 @@ return PhpCsFixer\Config::create()
|
|||
'concat_space' => ['spacing' => 'one'],
|
||||
'declare_equal_normalize' => ['space' => 'single'],
|
||||
'heredoc_to_nowdoc' => true,
|
||||
'increment_style' => ['style' => 'post'],
|
||||
'linebreak_after_opening_tag' => true,
|
||||
'method_argument_space' => [
|
||||
'ensure_fully_multiline' => false,
|
||||
|
@ -45,4 +46,10 @@ return PhpCsFixer\Config::create()
|
|||
'psr4' => true,
|
||||
'random_api_migration' => true,
|
||||
'standardize_not_equals' => true,
|
||||
'ternary_to_null_coalescing' => true,
|
||||
'yoda_style' => [
|
||||
'equal' => false,
|
||||
'identical' => false,
|
||||
'less_and_greater' => false,
|
||||
]
|
||||
])->setRiskyAllowed(true)->setFinder($finder);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue