Auth0UserSignupEvent.php in Auth0 Single Sign On 8
Same filename and directory in other branches
Namespace
Drupal\auth0\EventFile
src/Event/Auth0UserSignupEvent.phpView source
<?php
namespace Drupal\auth0\Event;
use Symfony\Component\EventDispatcher\Event;
/**
* User signup event.
*/
class Auth0UserSignupEvent extends Event {
const NAME = 'auth0.signup';
/**
* @var \Drupal\user\UserInterface
*/
protected $user;
/**
* @var array
*/
protected $auth0Profile;
/**
* Initialize the event.
* @param \Drupal\user\UserInterface $user
* @param array $auth0Profile
*/
public function __construct($user, $auth0Profile) {
$this->user = $user;
$this->auth0Profile = $auth0Profile;
}
/**
* Get the drupal user.
* @return \Drupal\user\UserInterface
*/
public function getUser() {
return $this->user;
}
/**
* Get the Auth0 profile.
* @return array
*/
public function getAuth0Profile() {
return $this->auth0Profile;
}
}
Classes
Name | Description |
---|---|
Auth0UserSignupEvent | User signup event. |