ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
WriterPart.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 abstract class WriterPart
8 {
14  private $parentWriter;
15 
21  public function getParentWriter()
22  {
23  return $this->parentWriter;
24  }
25 
29  public function __construct(Ods $writer)
30  {
31  $this->parentWriter = $writer;
32  }
33 
34  abstract public function write(): string;
35 }
__construct(Ods $writer)
Set parent Ods writer.
Definition: WriterPart.php:29