| 1 | <?php namespace Bedard\Shop\Drivers; |
||
| 6 | class NoPayment extends PaymentDriver |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @return string Form fields. |
||
| 10 | */ |
||
| 11 | public $formFields = 'nopayment/fields.yaml'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Process a cart. |
||
| 15 | * |
||
| 16 | * @param Cart $cart |
||
| 17 | * @return void |
||
| 18 | */ |
||
| 19 | public function process(Cart $cart) |
||
| 23 | } |
||
| 24 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.