| Conditions | 1 |
| Paths | 1 |
| Total Lines | 22 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function register() |
||
| 10 | { |
||
| 11 | $this->app->register(\LaravelDoctrine\Migrations\MigrationsServiceProvider::class); |
||
|
|
|||
| 12 | $this->app->register(\LaravelDoctrine\ORM\DoctrineServiceProvider::class); |
||
| 13 | $this->app->register(\LaravelDoctrine\Extensions\GedmoExtensionsServiceProvider::class); |
||
| 14 | |||
| 15 | $this->app->register(\Bludata\Lumen\Authentication\JWT\Providers\JWTServiceProvider::class); |
||
| 16 | $this->app->register(CustomConnectionSqlanywhereServiceProvider::class); |
||
| 17 | $this->app->register(RegisterCustomAnnotationsServiceProvider::class); |
||
| 18 | |||
| 19 | /* |
||
| 20 | |-------------------------------------------------------------------------- |
||
| 21 | | Aliases |
||
| 22 | |-------------------------------------------------------------------------- |
||
| 23 | | |
||
| 24 | | Here we will register all of the application's aliases. |
||
| 25 | | |
||
| 26 | */ |
||
| 27 | class_alias(\LaravelDoctrine\ORM\Facades\EntityManager::class, 'EntityManager'); |
||
| 28 | class_alias(\LaravelDoctrine\ORM\Facades\Registry::class, 'Registry'); |
||
| 29 | class_alias(\LaravelDoctrine\ORM\Facades\Doctrine::class, 'Doctrine'); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.