阅读(915)
赞(12)
Laravel 8 编写服务提供者
2021-06-23 10:57:15 更新
所有的服务提供者都会继承 Illuminate\Support\ServiceProvider
类。 大多服务提供者都包含一个 register
和一个 boot
方法。在 register
方法中, 你只需要将服务绑定到 服务容器。 而不要尝试在 register
方法中注册任何监听器,路由,或者其他任何功能
使用 Artisan 命令行工具,通过 make:provider
命令可以生成一个新的提供者:
php artisan make:provider RiakServiceProvider