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