Skip to content

Commit

Permalink
fix "Unable to find type name" when creating closure
Browse files Browse the repository at this point in the history
  • Loading branch information
AegirLeet authored and bobthecow committed Jun 9, 2024
1 parent 810dd5e commit 99537fd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/CodeCleaner/ReturnTypePass.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\Expr\ConstFetch;
use PhpParser\Node\Identifier;
use PhpParser\Node\Name;
use PhpParser\Node\NullableType;
use PhpParser\Node\Stmt\Function_;
use PhpParser\Node\Stmt\Return_;
Expand Down Expand Up @@ -108,6 +109,10 @@ private function typeName(Node $node): string
return \strtolower($node->name);
}

if ($node instanceof Name) {
return \strtolower($node->name);
}

throw new \InvalidArgumentException('Unable to find type name');
}
}

0 comments on commit 99537fd

Please sign in to comment.