PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
Events
<?php namespace Illuminate\Auth\Events; use Illuminate\Queue\SerializesModels; class Authenticated { 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; } }
[-] Verified.php
[edit]
[-] CurrentDeviceLogout.php
[edit]
[-] Failed.php
[edit]
[-] Attempting.php
[edit]
[-] Lockout.php
[edit]
[+]
..
[-] Logout.php
[edit]
[-] Login.php
[edit]
[-] PasswordReset.php
[edit]
[-] OtherDeviceLogout.php
[edit]
[-] Registered.php
[edit]
[-] Validated.php
[edit]
[-] Authenticated.php
[edit]