Airship\Hangar\Command::usageInfo PHP Method

usageInfo() public method

Display the usage information for this command.
public usageInfo ( array $args = [] ) : boolean
$args array - CLI arguments
return boolean
    public function usageInfo(array $args = [])
    {
        unset($args);
        $TAB = \str_repeat(' ', self::TAB_SIZE);
        $HTAB = \str_repeat(' ', (int) ceil(self::TAB_SIZE / 2));
        echo $HTAB, 'Airship / Hangar - ', $this->name, "\n\n";
        echo $TAB, $this->description, "\n\n";
        return true;
    }