Skip to content

Commit b24c5bb

Browse files
localheinzsebastianbergmann
authored andcommitted
Fix: Do not use internal constants from friendsofphp/php-cs-fixer
1 parent b0e6807 commit b24c5bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.php-cs-fixer.dist.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
'implode_call' => true,
113113
'include' => true,
114114
'increment_style' => [
115-
'style' => PhpCsFixer\Fixer\Operator\IncrementStyleFixer::STYLE_POST,
115+
'style' => 'post',
116116
],
117117
'indentation_type' => true,
118118
'is_null' => true,
@@ -226,9 +226,9 @@
226226
],
227227
'ordered_imports' => [
228228
'imports_order' => [
229-
PhpCsFixer\Fixer\Import\OrderedImportsFixer::IMPORT_TYPE_CONST,
230-
PhpCsFixer\Fixer\Import\OrderedImportsFixer::IMPORT_TYPE_FUNCTION,
231-
PhpCsFixer\Fixer\Import\OrderedImportsFixer::IMPORT_TYPE_CLASS,
229+
'const',
230+
'function',
231+
'class',
232232
]
233233
],
234234
'ordered_interfaces' => [

0 commit comments

Comments
 (0)