for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Slides\Saml2\Events;
use Slides\Saml2\Saml2User;
use Slides\Saml2\Auth;
/**
* Class LoggedIn
*
* @package Slides\Saml2\Events
*/
class SignedIn
{
* The signed-up user.
* @var Saml2User
public $user;
* The authentication handler.
* @var Auth
public $auth;
* LoggedIn constructor.
* @param Saml2User $user
* @param Auth $auth
public function __construct(Saml2User $user, Auth $auth)
$this->user = $user;
$this->auth = $auth;
}
* Get the authentication handler for a SAML sign in attempt
* @return Auth The authentication handler for the SignedIn event
public function getAuth(): Auth
return $this->auth;
* Get the user represented in the SAML sign in attempt
* @return Saml2User The user for the SignedIn event
public function getSaml2User(): Saml2User
$user
$auth
return $this->user;