MiniAsset\Cli\MiniAsset::help PHP Method

help() public method

public help ( )
    public function help()
    {
        $this->cli->underline('Mini Asset CLI Tool');
        $this->cli->out('');
        $this->cli->out('Build and clear managed assets for your application');
        $this->cli->out('');
        $this->cli->magenta('Commands');
        $this->cli->out('');
        $this->cli->out('- <green>build</green> Build assets.');
        $this->cli->out('- <green>clear</green> Remove generated assets.');
        $this->cli->out('');
        $this->cli->out('Use the <yellow>--help</yellow> on either command to get more help.');
        $this->cli->out('');
    }

Usage Example

Beispiel #1
0
 /**
  * @see \MiniAsset\Cli\MiniAsset::help()
  */
 public function help()
 {
     $this->cli->underline('Cobbler Asset CLI Tool');
     $this->cli->out('');
     $this->cli->out('Parse assets for your application');
     $this->cli->out('');
     $this->cli->magenta('Commands');
     $this->cli->out('');
     $this->cli->out('- <green>turnout</green> Build assets.');
     $this->cli->out('');
     return parent::help();
 }