| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class PostPaymentCartEvent extends FormFlowEvent |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var SkuskuPayment |
||
| 17 | */ |
||
| 18 | private $payment; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var |
||
| 22 | */ |
||
| 23 | private $status; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param FormFlowInterface $flow |
||
| 27 | */ |
||
| 28 | public function __construct(FormFlowInterface $flow, SkuskuPayment $payment, $status) |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return SkuskuPayment |
||
| 37 | */ |
||
| 38 | public function getPayment() |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return mixed |
||
| 45 | */ |
||
| 46 | public function getStatus() |
||
| 51 |