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