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