Created
April 20, 2016 13:09
-
-
Save armababy/dbbda72821f4d2be7f79c57c4a315ca0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Modules\UserProfile\Providers; | |
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; | |
use Modules\User\Events\UserWasUpdated; | |
use Modules\UserProfile\Events\Handlers\EventHandler; | |
class EventServiceProvider extends ServiceProvider | |
{ | |
protected $listen = [ | |
UserWasUpdated::class => [ | |
EventHandler::class | |
] | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment