Skip to content

Commit d199286

Browse files
authored
Fix CI (#902)
1 parent bf76aee commit d199286

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.dev-tools/psalm.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
</stubs>
2222

2323
<issueHandlers>
24+
<DeprecatedClass errorLevel='suppress' />
2425
<InternalClass errorLevel='suppress' />
2526
<InternalMethod errorLevel='suppress' />
2627
<MissingConstructor errorLevel='suppress' />

.dev-tools/src/Readme/ReadmeCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
namespace PhpCsFixerCustomFixersDev\Readme;
1313

14-
use PhpCsFixer\Console\Command\HelpCommand;
1514
use PhpCsFixer\Fixer\ConfigurableFixerInterface;
1615
use PhpCsFixer\Fixer\DeprecatedFixerInterface;
1716
use PhpCsFixer\Fixer\WhitespacesAwareFixerInterface;
1817
use PhpCsFixer\FixerDefinition\CodeSampleInterface;
1918
use PhpCsFixer\StdinFileInfo;
2019
use PhpCsFixer\Tokenizer\Tokens;
20+
use PhpCsFixer\Utils;
2121
use PhpCsFixer\WhitespacesFixerConfig;
2222
use PhpCsFixerCustomFixers\Fixer\AbstractFixer;
2323
use PhpCsFixerCustomFixers\Fixer\DataProviderStaticFixer;
@@ -219,7 +219,7 @@ private function fixers(): string
219219
$option->getName(),
220220
\implode('`, `', $allowed),
221221
$option->getDescription(),
222-
HelpCommand::toString($option->getDefault()),
222+
Utils::toString($option->getDefault()),
223223
);
224224
}
225225
}

0 commit comments

Comments
 (0)