File tree Expand file tree Collapse file tree 1 file changed +13
-17
lines changed Expand file tree Collapse file tree 1 file changed +13
-17
lines changed Original file line number Diff line number Diff line change @@ -61,24 +61,20 @@ protected function buildClass(mixed $name): string
61
61
*/
62
62
protected function getOptions (): array
63
63
{
64
- $ composite = new InputOption (
65
- 'composite ' ,
66
- null ,
67
- InputOption::VALUE_NONE ,
68
- 'Indicates the specification should be composite ' ,
69
- );
70
-
71
- $ candidate = new InputOption (
72
- 'candidate ' ,
73
- 'c ' ,
74
- InputOption::VALUE_OPTIONAL ,
75
- 'Specify the candidate type to use ' ,
76
- 'mixed ' ,
77
- );
78
-
79
64
return [
80
- $ composite ,
81
- $ candidate ,
65
+ new InputOption (
66
+ 'composite ' ,
67
+ null ,
68
+ InputOption::VALUE_NONE ,
69
+ 'Indicates the specification should be composite ' ,
70
+ ),
71
+ new InputOption (
72
+ 'candidate ' ,
73
+ 'c ' ,
74
+ InputOption::VALUE_OPTIONAL ,
75
+ 'Specify the candidate type to use ' ,
76
+ 'mixed ' ,
77
+ ),
82
78
];
83
79
}
84
80
You can’t perform that action at this time.
0 commit comments