Skip to content

Commit

Permalink
Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Dec 18, 2022
1 parent 19c0c09 commit a632e11
Show file tree
Hide file tree
Showing 3 changed files with 1,660 additions and 408 deletions.
4 changes: 4 additions & 0 deletions src/Types/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ protected function getMethodsDefinitions($boot, $source, $defaultClass)
$files = [];

foreach ($this->getMethods($boot) as $name => $closure) {
if (!$closure) {
continue;
}

try {
$function = new ReflectionFunction($closure);
} catch (ReflectionException $e) {
Expand Down
Loading

0 comments on commit a632e11

Please sign in to comment.