Files
aux-bieaux-legumes/local/modules/DigressivePrice/Event/DigressivePriceIdEvent.php
2021-04-08 15:57:38 +02:00

30 lines
480 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;
}
}