| 1 | <?php |
||
| 17 | class CheckoutController extends AbstractController |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Payment service |
||
| 22 | * |
||
| 23 | * @var \FRUIT\Shopize\Service\PaymentService |
||
| 24 | * @inject |
||
| 25 | */ |
||
| 26 | protected $paymentService; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Billing action |
||
| 30 | */ |
||
| 31 | public function billingAction() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Shipment action |
||
| 37 | */ |
||
| 38 | public function shipmentAction() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Payment action |
||
| 44 | */ |
||
| 45 | public function paymentAction() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Confirm action |
||
| 52 | */ |
||
| 53 | public function confirmAction() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Check action |
||
| 59 | */ |
||
| 60 | public function checkAction() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Finish action |
||
| 68 | */ |
||
| 69 | public function finishAction() |
||
| 72 | } |
||
| 73 |