You are here

public function LtiToolProviderLaunchRedirectEvent::__construct in LTI Tool Provider 8

Same name and namespace in other branches
  1. 2.x src/Event/LtiToolProviderLaunchRedirectEvent.php \Drupal\lti_tool_provider\Event\LtiToolProviderLaunchRedirectEvent::__construct()

LtiToolProviderLaunchRedirectEvent constructor.

Parameters

array $context:

string $destination:

File

src/Event/LtiToolProviderLaunchRedirectEvent.php, line 26

Class

LtiToolProviderLaunchRedirectEvent

Namespace

Drupal\lti_tool_provider\Event

Code

public function __construct(array $context, string $destination) {
  $this
    ->setContext($context);
  $this
    ->setDestination($destination);
}