| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 112 | public function render() |
|
| 14 | { |
||
| 15 | 112 | for ($i = 0; $i < $this->getDrawingHashTable()->count(); ++$i) { |
|
| 16 | 43 | $shape = $this->getDrawingHashTable()->getByIndex($i); |
|
| 17 | 43 | if (!$shape instanceof AbstractDrawingAdapter) { |
|
| 18 | 34 | continue; |
|
| 19 | } |
||
| 20 | 9 | $this->getZip()->addFromString('ppt/media/' . $shape->getIndexedFilename(), $shape->getContents()); |
|
| 21 | } |
||
| 22 | |||
| 23 | 112 | return $this->getZip(); |
|
| 24 | } |
||
| 25 | } |
||
| 26 |