message; } /** * Is array * * Function will return true if object is array. * * @return bool */ public function isArray(): bool { return false; } /** * Get Type * * Returns validator type. * * @return string */ public function getType(): string { return self::TYPE_OBJECT; } /** * Returns what type of query this Validator is for */ abstract public function getMethodType(): string; }