Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
35 | protected function execute(InputInterface $input, OutputInterface $output) |
||
36 | { |
||
37 | $packageName = $input->getArgument('package-name'); |
||
38 | $targetPackageName = $input->getArgument('target-package-name'); |
||
39 | |||
40 | Manifest::factory($packageName, $targetPackageName) |
||
41 | ->publish(new Target\GitHub()); |
||
42 | } |
||
43 | } |
||
44 |