1 | <?php |
||
25 | class PhpConverter implements ConverterInterface |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * |
||
30 | * @var MiniView |
||
31 | */ |
||
32 | private $view = null; |
||
33 | |||
34 | /** |
||
35 | * File decorator |
||
36 | * @var FileDecorator |
||
37 | */ |
||
38 | private $decorator = null; |
||
39 | |||
40 | /** |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | private $_fileName; |
||
45 | |||
46 | /** |
||
47 | * |
||
48 | * @var string |
||
49 | */ |
||
50 | private $_tempName; |
||
51 | private $_doc = ''; |
||
52 | |||
53 | public function __construct() |
||
57 | |||
58 | public function input($documentation, $fileName) |
||
67 | |||
68 | public function output(OutputInterface $output) |
||
73 | |||
74 | } |
||
75 |