Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | abstract class Command extends BaseCommand |
||
24 | { |
||
25 | protected Plugin $plugin; |
||
26 | |||
27 | public function __construct(Plugin $plugin) |
||
28 | { |
||
29 | parent::__construct(); |
||
30 | |||
31 | $this->plugin = $plugin; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return PathHelper[] |
||
36 | */ |
||
37 | protected function getPaths(InputInterface $input): array |
||
49 | } |
||
50 | } |
||
51 |