| 1 | <?php namespace Bedard\Shop\Classes; |
||
| 6 | class NoShippingDriver implements ShippingDriverInterface |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Return details about this driver. |
||
| 10 | * |
||
| 11 | * @return array |
||
| 12 | */ |
||
| 13 | public function driverDetails() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Calculate the shipping for a cart. |
||
| 22 | * |
||
| 23 | * @param Cart $cart |
||
| 24 | * @return float |
||
| 25 | */ |
||
| 26 | public function calculate(Cart $cart) |
||
| 29 | } |
||
| 30 |