| 1 | <?php |
||
| 20 | abstract class CreditCard implements PaymentMethod |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var |
||
| 24 | */ |
||
| 25 | protected $Order; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | abstract public function checkout(); |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | abstract public function apply(); |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | abstract public function setFormType(FormInterface $form); |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function setOrder(Order $Order) |
||
| 49 | } |
||
| 50 |