File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 88use PhpParser \Node \AttributeGroup ;
99use PhpParser \Node \Expr ;
1010use PhpParser \Node \Identifier ;
11- use PhpParser \Node \Name \ FullyQualified ;
11+ use PhpParser \Node \Name ;
1212use PhpParser \Node \Param ;
1313use PhpParser \Node \Stmt \Class_ ;
1414use PhpParser \Node \Stmt \ClassLike ;
@@ -85,7 +85,7 @@ public function findAttributeByClass(
8585 /** @var AttributeGroup $attrGroup */
8686 foreach ($ node ->attrGroups as $ attrGroup ) {
8787 foreach ($ attrGroup ->attrs as $ attribute ) {
88- if (! $ attribute ->name instanceof FullyQualified ) {
88+ if (! $ attribute ->name instanceof Name ) {
8989 continue ;
9090 }
9191
@@ -110,7 +110,7 @@ public function findManyByClass(
110110 /** @var AttributeGroup $attrGroup */
111111 foreach ($ node ->attrGroups as $ attrGroup ) {
112112 foreach ($ attrGroup ->attrs as $ attribute ) {
113- if (! $ attribute ->name instanceof FullyQualified ) {
113+ if (! $ attribute ->name instanceof Name ) {
114114 continue ;
115115 }
116116
You can’t perform that action at this time.
0 commit comments