1 | <?php |
||
9 | class GenerateOptimusCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'support:generate-optimus |
||
17 | {--show : Display the values instead of modifying files}'; |
||
18 | |||
19 | /** |
||
20 | * The console command description. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $description = 'Generate Optimus values'; |
||
25 | |||
26 | /** |
||
27 | * Execute the console command. |
||
28 | * |
||
29 | * @return mixed |
||
30 | */ |
||
31 | public function handle() |
||
47 | |||
48 | /** |
||
49 | * Print Optimus values. |
||
50 | * |
||
51 | * @param array $values |
||
52 | */ |
||
53 | protected function printValues($values) |
||
57 | |||
58 | /** |
||
59 | * Set Optimus values in the environment file. |
||
60 | * |
||
61 | * @param array $values |
||
62 | */ |
||
63 | protected function setValuesInEnvironmentFile($values) |
||
80 | } |
||
81 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.