| Conditions | 4 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Bedard\Shop\Models; |
||
| 45 | protected function validateDrivers(array $drivers = null) |
||
| 46 | { |
||
| 47 | if (! $drivers || ! is_array($drivers)) { |
||
| 48 | Flash::error(Lang::get('bedard.shop::lang.shipping.form.validation_none')); |
||
| 49 | throw new ValidationException(null); |
||
| 50 | } |
||
| 51 | |||
| 52 | // @todo: allow more than one shipping driver to be enabled |
||
| 53 | if (count($drivers) !== 1) { |
||
| 54 | Flash::error(Lang::get('bedard.shop::lang.shipping.form.validation_multiple')); |
||
| 55 | throw new ValidationException(null); |
||
| 56 | } |
||
| 57 | } |
||
| 58 | } |
||
| 59 |