-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[5.8] Send LogoutOtherDevices event when request is made.
This would allow developers to manages other authentications to react to this request such as `Passport`, where the application may choose to revoke all users access_token etc. Signed-off-by: Mior Muhammad Zaki <[email protected]>
- Loading branch information
Showing
3 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
namespace Illuminate\Auth\Events; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class LogoutOtherDevices | ||
{ | ||
use SerializesModels; | ||
|
||
/** | ||
* The authentication guard name. | ||
* | ||
* @var string | ||
*/ | ||
public $guard; | ||
|
||
/** | ||
* The authenticated user. | ||
* | ||
* @var \Illuminate\Contracts\Auth\Authenticatable | ||
*/ | ||
public $user; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @param string $guard | ||
* @param \Illuminate\Contracts\Auth\Authenticatable $user | ||
* @return void | ||
*/ | ||
public function __construct($guard, $user) | ||
{ | ||
$this->user = $user; | ||
$this->guard = $guard; | ||
} | ||
} |
This file contains 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
This file contains 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