- Nexxpix - OpenStudio */ class DigressivePriceFullEvent extends DigressivePriceEvent { protected $id; public function __construct( $id, $productId, $discount, $quantityFrom, $quantityTo ) { parent::__construct($productId, $discount, $quantityFrom, $quantityTo); $this->id = $id; } /** * @return mixed */ public function getId() { return $this->id; } }