関数
Confirm::errorPageMessage( array $html )
パラメータ パラメータ
- $html
(配列) (必須)
ファイル: src/Api/Confirm.php
protected function errorPageMessage($html) {
if ($this->error === null) {
return $html;
}
$html = (new Views\CartErrorPage\CartErrorPage())->getErrorPageHtml(
$html,
$this->error->errorcode,
$this->error->message
);
return $html;
}