Total Complexity | 2 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class ChangelogRepositoryFactory |
||
9 | { |
||
10 | /** |
||
11 | * @var \Vaimo\ComposerChangelogs\Composer\Context |
||
12 | */ |
||
13 | private $composerCtx; |
||
14 | |||
15 | /** |
||
16 | * @var \Symfony\Component\Console\Output\OutputInterface |
||
17 | */ |
||
18 | private $output; |
||
19 | |||
20 | /** |
||
21 | * @param \Vaimo\ComposerChangelogs\Composer\Context $composerCtx |
||
22 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
23 | */ |
||
24 | public function __construct( |
||
30 | } |
||
31 | |||
32 | public function create($fromSource) |
||
55 |