. */ namespace Plugin\ActivityStreamsTwo\Util\Type; /** * \Plugin\ActivityStreamsTwo\Util\Type\ValidatorInterface specifies methods that must be * implemented for attribute (property) validation. */ interface ValidatorInterface { public function validate(mixed $value, mixed $container): bool; }