1 | <?php |
||
5 | class CallWriter implements CallWriterInterface |
||
6 | { |
||
7 | |||
8 | /** @var \Doku_Handler $Handler */ |
||
9 | protected $Handler; |
||
10 | |||
11 | /** |
||
12 | * @param \Doku_Handler $Handler |
||
13 | */ |
||
14 | public function __construct(\Doku_Handler $Handler) |
||
18 | |||
19 | /** @inheritdoc */ |
||
20 | public function writeCall($call) |
||
24 | |||
25 | /** @inheritdoc */ |
||
26 | public function writeCalls($calls) |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | * function is required, but since this call writer is first/highest in |
||
34 | * the chain it is not required to do anything |
||
35 | */ |
||
36 | public function finalise() |
||
40 | } |
||
41 |