1 | <?php |
||
15 | abstract class ProcessorDecorator implements ProcessorInterface |
||
16 | { |
||
17 | /** @var ProcessorInterface */ |
||
18 | private $wrapped; |
||
19 | |||
20 | public function __construct(ProcessorInterface $wrapped) |
||
24 | |||
25 | public function parse(string $string): array |
||
29 | |||
30 | public function dump(array $data): string |
||
34 | } |
||
35 |