Futilities/v0.6/clade/Kiosk/@fx/RenderCommonHelp

From Woozle Writes Code
< Futilities‎ | v0.6‎ | clade‎ | Kiosk‎ | @fx
Jump to navigation Jump to search
RenderCommonHelp()

About

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

as of 2025-11-15

public function RenderCommonHelp() : string {
        #echo $this->ReflectObject()->Report();
        $urlDocs = $this->DocsURL();
        return
            "USAGE: ".$this->RenderAppUsage()."\n"
            ."DOCS: $urlDocs\n"
            .$this->RenderHelpText()
            ."\n"
            ;
    }