Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | protected function configure() |
||
25 | { |
||
26 | $this |
||
27 | ->setName('delboy1978uk:migrate') |
||
28 | ->setDescription('Execute migrations in a vendor package') |
||
29 | ->addArgument('migrations-directory', InputArgument::REQUIRED, 'The directory containing the migrations.') |
||
30 | ->addArgument('entity-directory', InputArgument::REQUIRED, 'The directory containing the migrations.') |
||
31 | ->setHelp(<<<EOT |
||
32 | The <info>%command.name%</info> command executes migrate in a specified directory |
||
33 | |||
34 | <info>%command.full_name% foldername</info> |
||
35 | EOT |
||
36 | ); |
||
37 | |||
38 | parent::configure(); |
||
39 | } |
||
40 | } |
This check marks private properties in classes that are never used. Those properties can be removed.