Skip to content

Commit

Permalink
Fix after PHPStan update
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Sep 30, 2024
1 parent 63956f7 commit e208c93
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use PhpParser\Node;
use PhpParser\Node\Stmt\Switch_;
use PhpParser\PrettyPrinter\Standard;
use PHPStan\Analyser\Scope;
use PHPStan\Node\Printer\Printer;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleErrorBuilder;
use PHPStan\Type\VerbosityLevel;
Expand All @@ -17,9 +17,9 @@
class MatchingTypeInSwitchCaseConditionRule implements Rule
{

private Standard $printer;
private Printer $printer;

public function __construct(Standard $printer)
public function __construct(Printer $printer)
{
$this->printer = $printer;
}
Expand Down

0 comments on commit e208c93

Please sign in to comment.