1 | <?php |
||
25 | class FileDecorator extends AbstractDecorator |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Converter |
||
30 | * @var ConverterInterface |
||
31 | */ |
||
32 | private $_converter = null; |
||
33 | |||
34 | public function __construct(ConverterInterface $converter) |
||
41 | |||
42 | protected function decorated() |
||
46 | |||
47 | protected function init(DecoratorInterface $decorator) |
||
51 | |||
52 | } |
||
53 |