Fixed PHP-CS-Fixer not import global constants. (#5449)

This commit is contained in:
Rush2929
2022-12-13 02:12:33 +09:00
committed by GitHub
parent 74613b9b09
commit 31465525e3
13 changed files with 27 additions and 0 deletions

View File

@ -66,6 +66,9 @@ BODY,
],
'indentation_type' => true,
'logical_operators' => true,
'native_constant_invocation' => [
'scope' => 'namespaced'
],
'native_function_invocation' => [
'scope' => 'namespaced',
'include' => ['@all'],