ConversationModel::getCount PHP Метод

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

public getCount ( $wheres = [] )
    public function getCount($wheres = [])
    {
        if (is_numeric($wheres)) {
            deprecated('ConversationModel->getCount(int, array)', 'ConversationModel->getCountInbox()');
            $args = func_get_args();
            return $this->getCountInbox($wheres, val(1, $args));
        }
        return parent::getCount();
    }