Skip to content

Commit

Permalink
feat: cache the result of ClassReflection::hasMethod method
Browse files Browse the repository at this point in the history
  • Loading branch information
canvural committed Feb 13, 2025
1 parent 924a7a2 commit a2c8942
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Reflection/ClassReflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ final class ClassReflection
/** @var array<string, true> */
private static array $resolvingTypeAliasImports = [];

/** @var array<string, bool> */
private array $hasMethodCache = [];

/**
* @param PropertiesClassReflectionExtension[] $propertiesClassReflectionExtensions
* @param MethodsClassReflectionExtension[] $methodsClassReflectionExtensions
Expand Down Expand Up @@ -473,16 +476,26 @@ public function hasProperty(string $propertyName): bool

public function hasMethod(string $methodName): bool
{
if (array_key_exists($methodName, $this->hasMethodCache)) {
return $this->hasMethodCache[$methodName];
}

foreach ($this->methodsClassReflectionExtensions as $extension) {
if ($extension->hasMethod($this, $methodName)) {
$this->hasMethodCache[$methodName] = true;

return true;
}
}

if ($this->requireExtendsMethodsClassReflectionExtension->hasMethod($this, $methodName)) {
$this->hasMethodCache[$methodName] = true;

return true;
}

$this->hasMethodCache[$key] = false;

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.4)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.3)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.2)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan with result cache (8.1)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, ubuntu-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Undefined variable: $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

Check failure on line 497 in src/Reflection/ClassReflection.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, windows-latest)

Warning: Undefined variable $key

return false;
}

Expand Down

0 comments on commit a2c8942

Please sign in to comment.