Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 12 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
30 | View Code Duplication | public function perform() |
|
31 | { |
||
32 | if (file_exists($this->file) === false) { |
||
33 | $this->command->error('You don\'t have a <comment>.env</comment> file.'); |
||
34 | return false; |
||
35 | } |
||
36 | |||
37 | $this->command->info('Values for <comment>.env</comment>'); |
||
38 | $this->applyValues(); |
||
39 | |||
40 | return true; |
||
41 | } |
||
42 | |||
56 | } |
This check marks private properties in classes that are never used. Those properties can be removed.