for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpOffice\PhpPresentation\Slide;
use PhpOffice\PhpPresentation\AbstractShape;
class Animation
{
/**
* @var array
*/
protected $shapeCollection = array();
* @param AbstractShape $shape
* @return Animation
public function addShape(AbstractShape $shape)
$this->shapeCollection[] = $shape;
return $this;
}
* @return array
public function getShapeCollection()
return $this->shapeCollection;
* @param array $array
public function setShapeCollection(array $array = array())
$this->shapeCollection = $array;