Files
domokits/local/modules/DigressivePrice/Event/DigressivePriceIdEvent.php
2019-11-21 12:25:31 +01:00

29 lines
479 B
PHP

<?php
namespace DigressivePrice\Event;
use Thelia\Core\Event\ActionEvent;
/**
* Class DigressivePriceIdEvent
* @package DigressivePrice\Event
* @author Etienne PERRIERE <eperriere@openstudio.fr> - Nexxpix - OpenStudio
*/
class DigressivePriceIdEvent extends ActionEvent
{
protected $id;
public function __construct($id)
{
$this->id = $id;
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
}