1 | <?php |
||
5 | class Preformatted implements ReWriterInterface |
||
6 | { |
||
7 | |||
8 | /** @var CallWriterInterface original call writer */ |
||
9 | protected $callWriter; |
||
10 | |||
11 | protected $calls = array(); |
||
12 | protected $pos; |
||
13 | protected $text =''; |
||
14 | |||
15 | /** |
||
16 | * @inheritdoc |
||
17 | */ |
||
18 | public function __construct(CallWriterInterface $CallWriter) |
||
22 | |||
23 | /** @inheritdoc */ |
||
24 | public function writeCall($call) |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | * Probably not needed but just in case... |
||
32 | */ |
||
33 | public function writeCalls($calls) |
||
37 | |||
38 | /** @inheritdoc */ |
||
39 | public function finalise() |
||
48 | |||
49 | /** @inheritdoc */ |
||
50 | public function process() |
||
76 | } |
||
77 |