1 | <?php |
||
15 | final class StyleFactory |
||
16 | { |
||
17 | /** |
||
18 | * @var InputInterface |
||
19 | */ |
||
20 | private $input; |
||
21 | |||
22 | /** |
||
23 | * @var OutputInterface |
||
24 | */ |
||
25 | private $output; |
||
26 | |||
27 | public function __construct(InputInterface $input, OutputInterface $output) |
||
32 | |||
33 | /** |
||
34 | * @return StyleInterface |
||
35 | */ |
||
36 | public function create() |
||
40 | } |
||
41 |