| 1 | <?php namespace App\Events\Users; |
||
| 6 | class Updated extends EventAbstract |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var \Cartalyst\Sentinel\Users\UserInterface |
||
| 10 | */ |
||
| 11 | public $userBefore; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var \Cartalyst\Sentinel\Users\UserInterface |
||
| 15 | */ |
||
| 16 | public $userAfter; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var null|string |
||
| 20 | */ |
||
| 21 | public $oauthProviderName; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param \Cartalyst\Sentinel\Users\UserInterface $user |
||
| 25 | * @param \Cartalyst\Sentinel\Users\UserInterface $userAfter |
||
| 26 | * @param string|null $oauthProviderName |
||
| 27 | */ |
||
| 28 | 1 | public function __construct(UserInterface $user, UserInterface $userAfter, $oauthProviderName = null) |
|
| 36 | } |
||
| 37 |