Futilities/v0.6/clade/Kiosk/@fx/RenderCommonHelp
< Futilities | v0.6 | clade | Kiosk | @fx
Jump to navigation
Jump to search
RenderCommonHelp() |
About
- General: RenderCommonHelp
History
- 2024-07-08 Made this public so Options object can call it when the CLI input isn't right.
- This feels like it needs further refinement, but this is a Just Get It Working.
Code
public function RenderCommonHelp() : string {
#echo $this->ReflectObject()->Report();
$urlDocs = $this->DocsURL();
return
"USAGE: ".$this->RenderAppUsage()."\n"
."DOCS: $urlDocs\n"
.$this->RenderHelpText()
."\n"
;
}