You are here

class LtiToolProviderProvisionUserEvent in LTI Tool Provider 8

Same name and namespace in other branches
  1. 2.x src/Event/LtiToolProviderProvisionUserEvent.php \Drupal\lti_tool_provider\Event\LtiToolProviderProvisionUserEvent

Hierarchy

Expanded class hierarchy of LtiToolProviderProvisionUserEvent

1 file declares its use of LtiToolProviderProvisionUserEvent
LTIToolProvider.php in src/Authentication/Provider/LTIToolProvider.php

File

src/Event/LtiToolProviderProvisionUserEvent.php, line 8

Namespace

Drupal\lti_tool_provider\Event
View source
class LtiToolProviderProvisionUserEvent extends LtiToolProviderEvent {
  const EVENT_NAME = 'LTI_TOOL_PROVIDER_PROVISION_USER_EVENT';

  /**
   * @var array
   */
  private $context;

  /**
   * @var UserInterface
   */
  private $user;

  /**
   * LtiToolProviderProvisionUserEvent constructor.
   * @param array $context
   * @param UserInterface $user
   */
  public function __construct(array $context, UserInterface $user) {
    $this
      ->setContext($context);
    $this
      ->setUser($user);
  }

  /**
   * @return array
   */
  public function getContext() : array {
    return $this->context;
  }

  /**
   * @param array $context
   */
  public function setContext(array $context) {
    $this->context = $context;
  }

  /**
   * @return UserInterface
   */
  public function getUser() : UserInterface {
    return $this->user;
  }

  /**
   * @param UserInterface $user
   */
  public function setUser(UserInterface $user) : void {
    $this->user = $user;
  }

}

Members