*/ interface ExclusionStrategyInterface { /** * Whether the class should be skipped. */ public function shouldSkipClass(ClassMetadata $metadata, Context $context): bool; /** * Whether the property should be skipped. */ public function shouldSkipProperty(PropertyMetadata $property, Context $context): bool; }