Skip to content

Commit 3a565fa

Browse files
committed
Enhancement: Enable no_alias_function fixer
1 parent e0197a6 commit 3a565fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.php_cs.dist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ $config
1414
'array_syntax' => array('syntax' => 'long'),
1515
'binary_operator_spaces' => false,
1616
'concat_space' => array('spacing' => 'one'),
17+
'no_alias_functions' => true,
1718
'no_useless_else' => true,
1819
'no_useless_return' => true,
1920
'ordered_imports' => true,
@@ -27,6 +28,7 @@ $config
2728
'yoda_style' => false,
2829
'phpdoc_types_order' => array('null_adjustment' => 'none', 'sort_algorithm' => 'none'),
2930
))
31+
->setRiskyAllowed(true)
3032
->setFinder($finder)
3133
;
3234

0 commit comments

Comments
 (0)