Initial commit

This commit is contained in:
2020-11-02 15:46:52 +01:00
commit 17f974127c
13788 changed files with 1921656 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
/**
* User: Yohann Genre
* Date: 30/10/2015
* Time: 16:33
*
*/
namespace AdvancePrices\Action;
use Symfony\Component\Config\Definition\Exception\Exception;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Thelia\Core\Event\ActionEvent;
use Thelia\Core\Event\TheliaEvents;
class Price implements EventSubscriberInterface
{
public function update(ActionEvent $event)
{
throw new Exception('zob');
}
public static function getSubscribedEvents()
{
return array(
);
}
}