Module DigressivePrice

This commit is contained in:
2021-04-08 15:57:38 +02:00
parent 99f3749535
commit f608c9332b
17041 changed files with 3164200 additions and 14 deletions

View File

@@ -0,0 +1,29 @@
<?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;
}
}