LeanMapper\Reflection\EntityReflection::getDocComment PHP 메소드

getDocComment() 공개 메소드

Gets doc comment of current class
public getDocComment ( ) : string
리턴 string
    public function getDocComment()
    {
        if ($this->docComment === null) {
            $this->docComment = parent::getDocComment();
        }
        return $this->docComment;
    }