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(Ods $writer)
30 {
31 $this->parentWriter = $writer;
32 }
33
34 abstract public function write(): string;
35}
An exception for terminatinating execution or to throw for unit testing.
__construct(Ods $writer)
Set parent Ods writer.
Definition: WriterPart.php:29