Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ExecutionContext |
||
14 | { |
||
15 | /** |
||
16 | * @var \Vaimo\ComposerChangelogs\Composer\Context |
||
17 | */ |
||
18 | private $composerCtx; |
||
19 | |||
20 | /** |
||
21 | * @var \Vaimo\ComposerChangelogs\Console\OutputGenerator |
||
22 | */ |
||
23 | private $outputGenerator; |
||
24 | |||
25 | /** |
||
26 | * @param \Vaimo\ComposerChangelogs\Composer\Context $composerCtx |
||
27 | */ |
||
28 | public function __construct( |
||
29 | OutputInterface $output, |
||
30 | \Vaimo\ComposerChangelogs\Composer\Context $composerCtx |
||
31 | ) { |
||
32 | $this->composerCtx = $composerCtx; |
||
33 | |||
34 | $this->outputGenerator = new \Vaimo\ComposerChangelogs\Console\OutputGenerator($output); |
||
35 | } |
||
36 | |||
37 | public function resolvePackage($name) |
||
48 | } |
||
49 | } |
||
51 |