Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Arcanedev\Currencies\Providers; |
||
29 | public function boot() |
||
30 | { |
||
31 | 612 | /** @var \Illuminate\Validation\Factory $validator */ |
|
32 | $validator = $this->app['validator']; |
||
33 | |||
34 | 612 | $validator->extend('currency_iso', CurrencyValidator::class.'@validateCurrencyIso'); |
|
35 | $validator->extend('currency_supported', CurrencyValidator::class.'@validateCurrencySupported'); |
||
36 | 612 | } |
|
37 | } |
||
38 |