Total Complexity | 6 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class CommandRunner |
||
12 | { |
||
13 | /** |
||
14 | * @var \Symfony\Component\Console\Output\OutputInterface |
||
15 | */ |
||
16 | private $output; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $directory; |
||
22 | |||
23 | public function __construct(OutputInterface $output, string $directory) |
||
24 | { |
||
25 | $this->output = $output; |
||
26 | $this->directory = $directory; |
||
27 | } |
||
28 | |||
29 | public function run(array $commands): bool |
||
46 | } |
||
47 | } |
||
48 |