@@ -48,7 +48,7 @@ class MakeAddon extends \Anomaly\Streams\Platform\Addon\Console\MakeAddon
48
48
* Execute the console command.
49
49
*/
50
50
public function fire (AddonManager $ addons )
51
- {
51
+ {
52
52
$ this ->logo ();
53
53
54
54
list ($ vendor , $ type , $ slug , $ path ) =
@@ -90,10 +90,10 @@ public function fire(AddonManager $addons)
90
90
* @return array
91
91
*/
92
92
protected function getArguments ()
93
- {
93
+ {
94
94
return [
95
95
['namespace ' , InputArgument::REQUIRED , 'The addon \'s desired dot namespace. ' ],
96
- ['template ' , InputArgument::OPTIONAL , 'The template name to scaffold. ' ],
96
+ ['template ' , InputArgument::OPTIONAL , 'The template name to scaffold. ' ]
97
97
];
98
98
}
99
99
@@ -105,13 +105,12 @@ protected function getArguments()
105
105
protected function getOptions ()
106
106
{
107
107
return [
108
- ['force ' , null , InputOption::VALUE_NONE , "Indicates whether to force a fresh download of the template. " ],
109
- ['shared ' , null , InputOption::VALUE_NONE , 'Indicates if the addon should be created in shared addons. ' ],
110
- ['migration ' , null , InputOption::VALUE_NONE , 'Indicates if a fields migration should be created. ' ],
111
- ['template ' , null , InputOption::VALUE_NONE , "Indicates whether an addon or an addon template should be created. " ],
112
- ['admin ' , null , InputOption::VALUE_NONE , "Indicates whether the addon is an Admin theme. " ],
113
- ['defaults ' , null , InputOption::VALUE_NONE , "Indicates whether to force template default values. " ],
108
+ ['force ' , null , InputOption::VALUE_NONE , "Indicates whether to force a fresh download of the template. " ],
109
+ ['shared ' , null , InputOption::VALUE_NONE , 'Indicates if the addon should be created in shared addons. ' ],
110
+ ['migration ' , null , InputOption::VALUE_NONE , 'Indicates if a fields migration should be created. ' ],
111
+ ['template ' , null , InputOption::VALUE_NONE , "Indicates whether an addon or an addon template should be created. " ],
112
+ ['admin ' , null , InputOption::VALUE_NONE , "Indicates whether the addon is an Admin theme. " ],
113
+ ['defaults ' , null , InputOption::VALUE_NONE , "Indicates whether to force template default values. " ],
114
114
];
115
115
}
116
-
117
116
}
0 commit comments