コード例 #1
0
ファイル: constant.php プロジェクト: script-solution/PHPCheck
 public function __clone()
 {
     parent::__clone();
     if ($this->type !== null) {
         $this->type = clone $this->type;
     }
 }
コード例 #2
0
ファイル: variable.php プロジェクト: script-solution/PHPCheck
 public function __clone()
 {
     parent::__clone();
     $this->type = clone $this->type;
     $this->arrayref = null;
     $this->arrayoff = null;
 }
コード例 #3
0
ファイル: field.php プロジェクト: script-solution/PHPCheck
 public function __clone()
 {
     parent::__clone();
     $this->type = clone $this->type;
 }