Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | class PostSubmitCartEvent extends FormFlowEvent |
||
16 | { |
||
17 | /** |
||
18 | * @var SkuskuCart |
||
19 | */ |
||
20 | private $cart; |
||
21 | |||
22 | /** |
||
23 | * @param FormFlowInterface $flow |
||
24 | */ |
||
25 | public function __construct(FormFlowInterface $flow, SkuskuCart $cart) |
||
26 | { |
||
27 | parent::__construct($flow); |
||
28 | $this->cart = $cart; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return SkuskuCart |
||
33 | */ |
||
34 | public function getCart() |
||
37 | } |
||
38 | } |
||
39 |