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 committed Jun 5, 2024
1 parent 619fcd8 commit 72bbc3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"php": "^8.0 || ^7.4",
"ext-json": "*",
"ext-tokenizer": "*",
"nikic/php-parser": "^5.0 || ^4.0",
"nikic/php-parser": "^4.0",
"symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
"symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
},
Expand Down
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 72bbc3a

Please sign in to comment.