| 1 | <?php |
||
| 8 | class CashOnDelivery implements PaymentMethodInterface |
||
| 9 | { |
||
| 10 | |||
| 11 | const ACTION = 'Checkout\PaymentMethods\CashOnDelivery'; |
||
| 12 | |||
| 13 | protected $webDriver; |
||
| 14 | protected $testCase; |
||
| 15 | |||
| 16 | public function __construct( |
||
| 23 | |||
| 24 | public function getId() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Fills in the payment form, selecting it, if necessary |
||
| 31 | * |
||
| 32 | * @param $requirePayment |
||
| 33 | */ |
||
| 34 | |||
| 35 | public function pay($requirePayment) |
||
| 45 | } |