We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6def72b commit bd9ad23Copy full SHA for bd9ad23
src/ColumnBuilder.php
@@ -39,6 +39,9 @@ public static function fromReflection(\ReflectionClass $reflectionClass): array
39
if ($property->isStatic() || $property->isPrivate()) {
40
continue;
41
}
42
+ if (method_exists($property, 'getHooks') && count($property->getHooks()) === 1) {
43
+ continue;
44
+ }
45
/** @var array<class-string, object> $propertyAttributes */
46
$propertyAttributes = [];
47
foreach ($property->getAttributes() as $attribute) {
0 commit comments