Dumplie\Inventory\Infrastructure\Doctrine\DBAL\Query\DbalInventoryQuery::count PHP Method

count() public method

public count ( ) : integer
return integer
    public function count() : int
    {
        $qb = $this->connection->createQueryBuilder();
        $qb->select('COUNT(sku)')->from('dumplie_inventory_product');
        return (int) $this->connection->fetchColumn($qb->getSQL(), $qb->getParameters());
    }