Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class LoaderFactory |
||
11 | { |
||
12 | /** |
||
13 | * @var \Vaimo\ComposerChangelogs\Composer\Context |
||
14 | */ |
||
15 | private $composerCtx; |
||
16 | |||
17 | /** |
||
18 | * @param \Vaimo\ComposerChangelogs\Composer\Context $composerCtx |
||
19 | */ |
||
20 | public function __construct( |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @SuppressWarnings(PHPMD.BooleanArgumentFlag) |
||
28 | * |
||
29 | * @param bool $fromSource |
||
30 | * @return \Vaimo\ComposerChangelogs\Loaders\ChangelogLoader |
||
31 | * @throws \Exception |
||
32 | */ |
||
33 | public function create($fromSource = false) |
||
42 |