Pimcore\Model\User\UserRole\Folder::hasChildren PHP Метод

hasChildren() публичный Метод

Returns true if the document has at least one child
public hasChildren ( ) : boolean
Результат boolean
    public function hasChildren()
    {
        if ($this->hasChilds !== null) {
            return $this->hasChilds;
        }
        return $this->getDao()->hasChilds();
    }