LeanMapper\Repository::getDocComment PHP Метод

getDocComment() приватный Метод

private getDocComment ( ) : string
Результат string
    private function getDocComment()
    {
        if ($this->docComment === null) {
            $reflection = new ReflectionClass(get_called_class());
            $this->docComment = $reflection->getDocComment();
        }
        return $this->docComment;
    }