Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | public function perform() |
||
21 | { |
||
22 | $copyDefinitions = collect($this->command->getDefaults('copy')); |
||
23 | |||
24 | $this->command->info('Found <comment>' . $copyDefinitions->count() . '</comment> paths to copy'); |
||
25 | |||
26 | $copyDefinitions->each(function ($definition) { |
||
27 | $this->copyFiles($definition['src'], $definition['dest']); |
||
28 | }); |
||
29 | } |
||
30 | |||
48 | } |
This check marks private properties in classes that are never used. Those properties can be removed.