addRule('type', [ 'type' => self::TYPE_STRING, 'description' => 'Algo type.', 'default' => 'sha', 'example' => 'sha', ]); } /** * Get Name * * @return string */ public function getName(): string { return 'AlgoSHA'; } /** * Get Type * * @return string */ public function getType(): string { return Response::MODEL_ALGO_SHA; } }