Skip to content

Commit

Permalink
EventSubscriberInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
kiy0taka committed Jun 29, 2023
1 parent 0b584cb commit 3388a5c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/application/Eccube/Service/SystemService.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

namespace Eccube\Service;

use Eccube\EventDispatcher\EventSubscriberInterface;
use Eccube\ORM\EntityManager;
use Eccube\Util\StringUtil;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\DataCollector\MemoryDataCollector;
use Symfony\Component\HttpKernel\Event\TerminateEvent;
use Symfony\Component\HttpKernel\KernelEvents;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

use Psr\EventDispatcher\StoppableEventInterface;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

class EventDispatcherDecorator extends EventDispatcher
{
Expand Down
18 changes: 18 additions & 0 deletions src/framework/Eccube/EventDispatcher/EventSubscriberInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Eccube\EventDispatcher;

interface EventSubscriberInterface extends \Composer\EventDispatcher\EventSubscriberInterface
{

}

0 comments on commit 3388a5c

Please sign in to comment.