LeanMapper\Reflection\EntityReflection::getDocComment PHP Method

getDocComment() public method

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