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