1<?php
2/**
3 * Matomo - free/libre analytics platform
4 *
5 * @link https://matomo.org
6 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
7 *
8 */
9namespace Piwik\Plugins\Ecommerce\Columns;
10
11use Piwik\Columns\Dimension;
12
13class ProductQuantity extends Dimension
14{
15    protected $type = self::TYPE_NUMBER;
16    protected $dbTableName = 'log_conversion_item';
17    protected $columnName = 'quantity';
18    protected $nameSingular = 'Goals_ProductQuantity';
19    protected $category = 'Goals_Ecommerce';
20
21}