From b3edaed74b93e1031151e4a4b9611f91ef174e3a Mon Sep 17 00:00:00 2001 From: Bram Wubs Date: Sun, 7 Jul 2024 22:22:15 +0200 Subject: [PATCH] CS --- src/Rector/StaticCall/DispatchToHelperFunctionsRector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rector/StaticCall/DispatchToHelperFunctionsRector.php b/src/Rector/StaticCall/DispatchToHelperFunctionsRector.php index fa0396f7..06580362 100644 --- a/src/Rector/StaticCall/DispatchToHelperFunctionsRector.php +++ b/src/Rector/StaticCall/DispatchToHelperFunctionsRector.php @@ -2,13 +2,13 @@ namespace RectorLaravel\Rector\StaticCall; -use PhpParser\Node\Name\FullyQualified; use PhpParser\Node; use PhpParser\Node\Arg; use PhpParser\Node\Expr\FuncCall; use PhpParser\Node\Expr\New_; use PhpParser\Node\Expr\StaticCall; use PhpParser\Node\Name; +use PhpParser\Node\Name\FullyQualified; use PHPStan\Broker\ClassNotFoundException; use PHPStan\Reflection\ClassReflection; use PHPStan\Reflection\ReflectionProvider;