Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 14 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
35 | View Code Duplication | public function perform() |
|
36 | { |
||
37 | if (file_exists($this->file) === false) { |
||
38 | $this->command->error('You don\'t have a the backpack base config file.'); |
||
39 | return false; |
||
40 | } |
||
41 | |||
42 | $this->command->info('Please provide your base config values:'); |
||
43 | |||
44 | $this->applyValues(); |
||
45 | |||
46 | //$user_model_fqn |
||
47 | return true; |
||
48 | } |
||
49 | |||
68 | } |
This check marks private properties in classes that are never used. Those properties can be removed.