-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?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; | ||
|
||
use Symfony\Component\HttpKernel\KernelEvents as SymfonyKernelEvents; | ||
|
||
class KernelEvents | ||
{ | ||
public const REQUEST = SymfonyKernelEvents::REQUEST; | ||
public const EXCEPTION = SymfonyKernelEvents::EXCEPTION; | ||
public const CONTROLLER = SymfonyKernelEvents::CONTROLLER; | ||
public const CONTROLLER_ARGUMENTS = SymfonyKernelEvents::CONTROLLER_ARGUMENTS; | ||
public const VIEW = SymfonyKernelEvents::VIEW; | ||
public const RESPONSE = SymfonyKernelEvents::RESPONSE; | ||
public const FINISH_REQUEST = SymfonyKernelEvents::FINISH_REQUEST; | ||
public const TERMINATE = SymfonyKernelEvents::TERMINATE; | ||
} |