forked from Sylius/SyliusCartBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SyliusCartEvents.php
29 lines (23 loc) · 974 Bytes
/
SyliusCartEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Bundle\CartBundle;
final class SyliusCartEvents
{
const CART_CLEAR_INITIALIZE = 'sylius.cart_clear.initialize';
const CART_CLEAR_COMPLETED = 'sylius.cart_clear.completed';
const CART_SAVE_INITIALIZE = 'sylius.cart_save.initialize';
const CART_SAVE_COMPLETED = 'sylius.cart_save.completed';
const ITEM_ADD_INITIALIZE = 'sylius.cart_item.add.initialize';
const ITEM_ADD_COMPLETED = 'sylius.cart_item.add.completed';
const ITEM_ADD_ERROR = 'sylius.cart_item.add.error';
const ITEM_REMOVE_INITIALIZE = 'sylius.cart_item.remove.initialize';
const ITEM_REMOVE_COMPLETED = 'sylius.cart_item.remove.completed';
const ITEM_REMOVE_ERROR = 'sylius.cart_item.remove.error';
}