mirror of
https://github.com/exane/not-gwent-online
synced 2025-06-21 03:04:21 +00:00
assets
client
public
server
site
client
public
server
app
Console
Events
Exceptions
Http
Jobs
Listeners
Providers
AppServiceProvider.php
EventServiceProvider.php
RouteServiceProvider.php
User.php
bootstrap
config
database
storage
tests
.env.example
artisan
composer.json
composer.lock
phpspec.yml
phpunit.xml
server.php
test
.gitignore
gulpfile.js
package.json
34 lines
737 B
PHP
Executable File
34 lines
737 B
PHP
Executable File
<?php
|
|
|
|
namespace Gwent\Providers;
|
|
|
|
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [
|
|
'Gwent\Events\SomeEvent' => [
|
|
'Gwent\Listeners\EventListener',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* Register any other events for your application.
|
|
*
|
|
* @param \Illuminate\Contracts\Events\Dispatcher $events
|
|
* @return void
|
|
*/
|
|
public function boot(DispatcherContract $events)
|
|
{
|
|
parent::boot($events);
|
|
|
|
//
|
|
}
|
|
}
|