Pimcore\Model\Object\Listing\Dao::getCount PHP Метод

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

public getCount ( ) : integer
Результат integer
    public function getCount()
    {
        if (count($this->model->getObjects()) == 0) {
            $this->load();
        }
        return count($this->model->getObjects());
    }