You are here

public function LtiToolProviderReturnEvent::__construct in LTI Tool Provider 8

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

LtiToolProviderReturnEvent constructor.

Parameters

array $context:

string $destination:

File

src/Event/LtiToolProviderReturnEvent.php, line 26

Class

LtiToolProviderReturnEvent

Namespace

Drupal\lti_tool_provider\Event

Code

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