We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
8 | class EventServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * The event listener mappings for the application. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | protected $listen = [ |
||
16 | 'DoeSangue\Events\SomeEvent' => [ |
||
17 | 'DoeSangue\Listeners\EventListener', |
||
18 | ], |
||
19 | ]; |
||
20 | |||
21 | /** |
||
22 | * Register any events for your application. |
||
23 | */ |
||
24 | 7 | public function boot() |
|
28 | } |
||
29 |