ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
WriterPart.php
Go to the documentation of this file.
1<?php
2
4
6
7abstract class WriterPart
8{
15
21 public function getParentWriter()
22 {
24 }
25
29 public function __construct(Xlsx $pWriter)
30 {
31 $this->parentWriter = $pWriter;
32 }
33}
An exception for terminatinating execution or to throw for unit testing.
__construct(Xlsx $pWriter)
Set parent Xlsx object.
Definition: WriterPart.php:29