Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0089439 + a348910 commit c99d4e3Copy full SHA for c99d4e3
app/Providers/EventServiceProvider.php
@@ -1,5 +1,6 @@
1
<?php namespace App\Providers;
2
3
+use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
4
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
5
6
class EventServiceProvider extends ServiceProvider {
@@ -18,9 +19,10 @@ class EventServiceProvider extends ServiceProvider {
18
19
/**
20
* Register any other events for your application.
21
*
22
+ * @param \Illuminate\Contracts\Events\Dispatcher $events
23
* @return void
24
*/
- public function boot()
25
+ public function boot(DispatcherContract $events)
26
{
27
//
28
}
0 commit comments