public function __clone() {
        parent::__clone();

        $this->type = clone $this->type;
        $this->branches = ArrayHelper::copy($this->branches);
    }
예제 #2
0
 public function __clone()
 {
     parent::__clone();
     $this->type = clone $this->type;
 }
    public function __clone() {
        parent::__clone();

        $this->dimensions = ArrayHelper::copy($this->dimensions);
        $this->measures = ArrayHelper::copy($this->measures);
    }
예제 #4
0
 public function __clone()
 {
     parent::__clone();
     $this->points = ArrayHelper::cloneArray($this->points);
 }
예제 #5
0
 public function __clone()
 {
     parent::__clone();
     $this->levels = ArrayHelper::cloneArray($this->levels);
 }
예제 #6
0
 public function __clone()
 {
     parent::__clone();
     $this->columns = ArrayHelper::cloneArray($this->columns);
 }