luya\console\Command::getGeneratorText PHP Method

getGeneratorText() public method

Generates the LUYA text which all generator files should include.
public getGeneratorText ( string $command ) : string
$command string The command which is used like `crud/create` or `aw/create`.
return string The text to insert.
    public function getGeneratorText($command)
    {
        return 'File has been created with `' . $command . '` command on LUYA version ' . $this->getLuyaVersion() . '.';
    }