1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
namespace Commercetools\Core\Model\Common;
/**
* @package Commercetools\Core\Model\Common
*
* @method PriceTierCollection add(PriceTier $element)
* @method PriceTier current()
* @method PriceTier getAt($offset)
*/
class PriceTierCollection extends Collection
{
protected $type = PriceTier::class;
}