Skip to content

Commit 5ca352c

Browse files
committed
Remove unnecessary Psalm suppressions from ProgressBarProgress
Fixes #299 The @psalm-suppress UndefinedDocblockClass and @psalm-suppress UndefinedClass annotations are no longer needed in ProgressBarProgress.php because: - All imported classes (OutputInterface, ProgressBar, NullOutput) are from symfony/console, which is a required dependency - CiDetector is from ondram/ci-detector, which is a required dependency - ClassSet and Progress are from the same project namespace - All type annotations in docblocks properly reference imported classes All tests pass successfully after removing these suppressions.
1 parent efbe06b commit 5ca352c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/CLI/Progress/ProgressBarProgress.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
use Symfony\Component\Console\Output\NullOutput;
1010
use Symfony\Component\Console\Output\OutputInterface;
1111

12-
/**
13-
* @psalm-suppress UndefinedDocblockClass
14-
* @psalm-suppress UndefinedClass
15-
*/
1612
class ProgressBarProgress implements Progress
1713
{
1814
/** @var OutputInterface */

0 commit comments

Comments
 (0)