| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function boot() |
||
| 16 | { |
||
| 17 | $this->publishes([ |
||
| 18 | __DIR__.'/../config/country-flags.php' => config_path('country-flags.php'), |
||
| 19 | ], 'config'); |
||
| 20 | |||
| 21 | $this->app->bind(CountryFlag::class, function () { |
||
| 22 | return new CountryFlag(config('country-flags.aliases')); |
||
| 23 | }); |
||
| 24 | |||
| 25 | $this->app->singleton('country-flag', CountryFlag::class); |
||
| 26 | } |
||
| 27 | |||
| 38 |