Go\Console\Command\DebugAspectCommand::getPrettyText PHP 메소드

getPrettyText() 개인적인 메소드

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