Go\Console\Command\DebugAspectCommand::getPrettyText PHP Method

getPrettyText() private method

Gets the reformatted comment text.
private getPrettyText ( string $comment ) : string
$comment string
return string
    private function getPrettyText($comment)
    {
        $text = preg_replace('|^\\s*/?\\*+/?|m', '', $comment);
        return $text;
    }