| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | 191 | public function __construct(SlideMaster $pSlideMaster) |
|
| 44 | { |
||
| 45 | // Set parent |
||
| 46 | 191 | $this->slideMaster = $pSlideMaster; |
|
| 47 | // Shape collection |
||
| 48 | 191 | $this->shapeCollection = new \ArrayObject(); |
|
| 49 | // Set identifier |
||
| 50 | 191 | $this->identifier = md5(rand(0, 9999) . time()); |
|
| 51 | 191 | } |
|
| 52 | } |
||
| 53 |