1 | <?php |
||
14 | final class Application |
||
15 | { |
||
16 | /** |
||
17 | * @var Fixer |
||
18 | */ |
||
19 | private $fixer; |
||
20 | |||
21 | /** |
||
22 | * @var FixerSetFactory |
||
23 | */ |
||
24 | private $fixerSetFactory; |
||
25 | |||
26 | public function __construct(Fixer $fixer, FixerSetFactory $fixerSetFactory) |
||
31 | |||
32 | public function runCommand(RunApplicationCommand $command) |
||
42 | } |
||
43 |