29 lines
479 B
PHP
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;
|
|
}
|
|
}
|