We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cf0eb4 commit b8226e8Copy full SHA for b8226e8
2 files changed
Classes/Domain/Component/PropType/IsComponent.php
@@ -14,6 +14,9 @@
14
*/
15
final class IsComponent
16
{
17
+ /**
18
+ * @param \ReflectionClass<mixed> $reflectionClass
19
+ */
20
public static function isSatisfiedByReflectionClass(\ReflectionClass $reflectionClass): bool
21
22
return self::isSatisfiedByClassName($reflectionClass->getName());
Classes/Domain/Component/Props.php
@@ -78,6 +78,7 @@ public static function fromClassName(string $className): self
78
}
79
80
/**
81
82
* @return array<string,PropTypeInterface>
83
84
private static function extractPropsFromReflectionClass(\ReflectionClass $reflectionClass): array
0 commit comments