LeanMapper\Repository::getDocComment PHP Method

getDocComment() private method

private getDocComment ( ) : string
return string
    private function getDocComment()
    {
        if ($this->docComment === null) {
            $reflection = new ReflectionClass(get_called_class());
            $this->docComment = $reflection->getDocComment();
        }
        return $this->docComment;
    }