| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | public function createApplication() |
||
| 20 | { |
||
| 21 | $app = require __DIR__.'/../vendor/laravel/laravel/bootstrap/app.php'; |
||
| 22 | |||
| 23 | $app->register(\Pixelpeter\IsoCodesValidation\IsoCodesValidationServiceProvider::class); |
||
| 24 | |||
| 25 | $app->make(\Illuminate\Contracts\Console\Kernel::class)->bootstrap(); |
||
| 26 | |||
| 27 | return $app; |
||
| 28 | } |
||
| 29 | } |
||
| 30 |