コード例 #1
0
ファイル: abstract.php プロジェクト: nooku/nooku-framework
 /**
  * Deep clone of this instance
  *
  * @return void
  */
 public function __clone()
 {
     parent::__clone();
     $this->_queue = clone $this->_queue;
 }
コード例 #2
0
ファイル: response.php プロジェクト: janssit/nickys.janss.be
 /**
  * Deep clone of this instance
  *
  * @return void
  */
 public function __clone()
 {
     parent::__clone();
     $this->_transport = clone $this->_transport;
     $this->_request = clone $this->_request;
 }