foreach ($scripts as $script) {
$grader = Grader::getInstance();
$grader->setApplicantId($script['applicant_id'])
->setHandler($x)
->doGrading();
}
グレーダークラス(シングルトンクラス)
public function setHandler($x)
{
$this->validateHandler($x);
}
public function validateHandler($x)
{
$this->handleError("Invalid Handler");
return $this;
}
public function handleError($message)
{
}
現在の実行を停止するように handleError 関数を作成するにはどうすればよいですか?