Skip to content

Commit abd46f1

Browse files
committed
Animation.php
1 parent f5141e0 commit abd46f1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
namespace PhpOffice\PhpPresentation\Slide;
3+
4+
class Animation
5+
{
6+
private $shapeCollection = array();
7+
8+
public function __construct()
9+
{
10+
11+
}
12+
13+
public function addShape($shape)
14+
{
15+
$this->shapeCollection[] = $shape;
16+
17+
return $shape;
18+
}
19+
20+
public function getShapeCollection()
21+
{
22+
return $this->shapeCollection;
23+
}
24+
}

0 commit comments

Comments
 (0)