We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99d96df commit 6910e3aCopy full SHA for 6910e3a
src/Rector/ArrayDimFetch/ArrayToArrGetRector.php
@@ -4,6 +4,7 @@
4
5
namespace RectorLaravel\Rector\ArrayDimFetch;
6
7
+use PhpParser\Node\Name\FullyQualified;
8
use PhpParser\Node;
9
use PhpParser\Node\Arg;
10
use PhpParser\Node\Expr;
@@ -67,7 +68,7 @@ public function refactor(Node $node): ?StaticCall
67
68
$expr = $this->getRootVariable($node);
69
70
return new StaticCall(
- new Name\FullyQualified('Illuminate\Support\Arr'),
71
+ new FullyQualified('Illuminate\Support\Arr'),
72
'get',
73
[
74
new Arg($expr),
0 commit comments