We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a33e22 commit cc1193cCopy full SHA for cc1193c
README.md
@@ -150,7 +150,7 @@ If you are a Laravel 5.1 (currently not released) user you could also use the bl
150
```
151
152
### Registering plugins
153
-Plugins can be registered in a service provider using the boot method.
+Plugins can be registered in a service provider using the `boot()` method.
154
```php
155
namespace App\Providers;
156
@@ -170,6 +170,15 @@ class TmdbServiceProvider extends ServiceProvider {
170
$client = $this->app->make('Tmdb\Client');
171
$client->getHttpClient()->addSubscriber($plugin);
172
}
173
+
174
+ /**
175
+ * Register services
176
+ * @return void
177
+ */
178
+ public function register()
179
+ {
180
+ // register any services that you need
181
+ }
182
183
184
0 commit comments