From efcd01a9614d497576d8f136aacbb455f3c77d07 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 8 Jan 2022 21:51:41 +0700 Subject: [PATCH] phpstan --- .../FuncCall/DowngradeNumberFormatNoFourthArgRector.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rules/DowngradePhp80/Rector/FuncCall/DowngradeNumberFormatNoFourthArgRector.php b/rules/DowngradePhp80/Rector/FuncCall/DowngradeNumberFormatNoFourthArgRector.php index 6921e1d410a..6f69eccf167 100644 --- a/rules/DowngradePhp80/Rector/FuncCall/DowngradeNumberFormatNoFourthArgRector.php +++ b/rules/DowngradePhp80/Rector/FuncCall/DowngradeNumberFormatNoFourthArgRector.php @@ -10,7 +10,6 @@ use PhpParser\Node\Scalar\String_; use Rector\Core\NodeAnalyzer\ArgsAnalyzer; use Rector\Core\Rector\AbstractRector; -use Rector\Core\Reflection\ReflectionResolver; use ReflectionFunction; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; @@ -23,8 +22,7 @@ final class DowngradeNumberFormatNoFourthArgRector extends AbstractRector { public function __construct( - private readonly ArgsAnalyzer $argsAnalyzer, - private readonly ReflectionResolver $reflectionResolver + private readonly ArgsAnalyzer $argsAnalyzer ) { }