Skip to content

Commit 051f440

Browse files
committed
Do not add \ to native functions
1 parent a0979b4 commit 051f440

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.php_cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ return PhpCsFixer\Config::create()
1919
'header_comment' => ['header' => $header],
2020
'heredoc_to_nowdoc' => false,
2121
'phpdoc_annotation_without_dot' => false,
22-
'yoda_style' => false
22+
'yoda_style' => false,
23+
'native_function_invocation' => false
2324
))
2425
->setRiskyAllowed(true)
2526
->setFinder(

0 commit comments

Comments
 (0)