File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,32 +19,31 @@ public function getName():string {
1919 }
2020
2121 public function getDescription ():string {
22- return "Run a local development HTTP server " ;
22+ $ baseCommand = new \Gt \Server \Command \StartCommand ();
23+ return $ baseCommand ->getDescription ();
2324 }
2425
2526 /** @return NamedParameter[] */
2627 public function getRequiredNamedParameterList ():array {
27- return [];
28+ $ baseCommand = new \Gt \Server \Command \StartCommand ();
29+ return $ baseCommand ->getRequiredNamedParameterList ();
2830 }
2931
3032 /** @return NamedParameter[] */
3133 public function getOptionalNamedParameterList ():array {
32- return [
33- new Parameter (
34- true ,
35- "port " ,
36- "p "
37- ),
38- ];
34+ $ baseCommand = new \Gt \Server \Command \StartCommand ();
35+ return $ baseCommand ->getOptionalNamedParameterList ();
3936 }
4037
4138 /** @return Parameter[] */
4239 public function getRequiredParameterList ():array {
43- return [];
40+ $ baseCommand = new \Gt \Server \Command \StartCommand ();
41+ return $ baseCommand ->getRequiredParameterList ();
4442 }
4543
4644 /** @return Parameter[] */
4745 public function getOptionalParameterList ():array {
48- return [];
46+ $ baseCommand = new \Gt \Server \Command \StartCommand ();
47+ return $ baseCommand ->getOptionalParameterList ();
4948 }
5049}
You can’t perform that action at this time.
0 commit comments