PhpOffice\PhpPresentation\Shape\AbstractGraphic::__clone PHP Method

__clone() public method

public __clone ( )
    public function __clone()
    {
        parent::__clone();
        self::$imageCounter++;
        $this->imageIndex = self::$imageCounter;
    }

Usage Example

Ejemplo n.º 1
0
 public function __clone()
 {
     parent::__clone();
     $this->title = clone $this->title;
     $this->legend = clone $this->legend;
     $this->plotArea = clone $this->plotArea;
     $this->view3D = clone $this->view3D;
 }