コード例 #1
0
ファイル: TemplateVariable.php プロジェクト: nagyist/qti-sdk
 /**
  * @see \qtism\runtime\common\Variable::__clone()
  */
 public function __clone()
 {
     parent::__clone();
 }
コード例 #2
0
ファイル: ResponseVariable.php プロジェクト: nagyist/qti-sdk
 /**
  * @see \qtism\runtime\common\Variable::__clone()
  */
 public function __clone()
 {
     parent::__clone();
     if (($cv = $this->getCorrectResponse()) !== null) {
         $this->correctResponse = clone $cv;
     }
 }