* Registers bindings * * Called during the application bootstrap phase to register * all core service bindings with the IoC container. * * @example * const provider = new AppServiceProvider(app) * provider.register() // Registers all core services
()
| 351 | * provider.register() // Registers all core services |
| 352 | */ |
| 353 | register() { |
| 354 | this.registerApp() |
| 355 | this.registerAce() |
| 356 | this.registerDumper() |
| 357 | this.registerLoggerManager() |
| 358 | this.registerLogger() |
| 359 | this.registerConfig() |
| 360 | this.registerEmitter() |
| 361 | this.registerEncryption() |
| 362 | this.registerTestUtils() |
| 363 | this.registerServer() |
| 364 | this.registerRouter() |
| 365 | this.registerBodyParserMiddleware() |
| 366 | } |
| 367 | |
| 368 | /** |
| 369 | * Boot the service provider |
nothing calls this directly
no test coverage detected