File: /virtual/nagasaki/public_html/ec/src/Eccube/Command/GeneratorCommand/generatortemplate/Event.php
<?php
/*
* This file is part of the [code]
*
* Copyright (C) [year] [author]
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Plugin\[code];
use Eccube\Application;
use Eccube\Event\EventArgs;
use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
use Symfony\Component\HttpKernel\Event\PostResponseEvent;
class [code]Event
{
/** @var \Eccube\Application $app */
private $app;
/**
* [code]Event constructor.
*
* @param Application $app
*/
public function __construct(Application $app)
{
$this->app = $app;
}
[hookpoint_function]}