UserRegistrationEvent::__construct PHP Method

__construct() public method

UserRegistrationEvent constructor.
public __construct ( RegistrationForm $form, User $user, UserToken $token = null )
$form RegistrationForm
$user User
$token UserToken
    public function __construct(RegistrationForm $form, User $user, UserToken $token = null)
    {
        $this->form = $form;
        $this->user = $user;
        $this->token = $token;
    }