for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpOffice\PhpPresentation\Slide;
class Animation
{
private $shapeCollection = array();
public function __construct()
}
public function addShape($shape)
$this->shapeCollection[] = $shape;
return $shape;
public function getShapeCollection()
return $this->shapeCollection;