Laracademy\Generators\Commands\ModelFromTableCommand::doComment PHP Method

doComment() public method

will add a comment to the screen if debug is on, or is over-ridden.
public doComment ( $text, $overrideDebug = false )
    public function doComment($text, $overrideDebug = false)
    {
        if ($this->options['debug'] || $overrideDebug) {
            $this->comment($text);
        }
    }