. */ namespace Plugin\ActivityPub\Util\Type\Validator; use Exception; use Plugin\ActivityPub\Util\Type\ValidatorTools; /** * \Plugin\ActivityPub\Util\Type\Validator\SummaryMapValidator is a dedicated * validator for summaryMap attribute. */ class SummaryMapValidator extends ValidatorTools { /** * Validate a summaryMap attribute value * * @param mixed $value * @param mixed $container An Object type * * @throws Exception * * @return bool */ public function validate(mixed $value, mixed $container): bool { return $this->validateMap('summary', $value, $container); } }