We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lti/packages/slim-lti-shim/src/Actions/LaunchAction.php
Line 25 in b436eea
<?php declare(strict_types=1); namespace GrotonSchool\SlimLTI\Actions; use Packback\Lti1p3\DeepLinkResources\Resource; use Packback\Lti1p3\LtiMessageLaunch; use Psr\Http\Message\ResponseInterface as Response; class LaunchAction extends LTIAction { protected function action(): Response { $launch = LtiMessageLaunch::new( $this->database, $this->cache, $this->cookie, $this->serviceConnector )->initialize($this->request->getParsedBody()); if ($launch->isDeepLinkLaunch()) { // TODO deep link } elseif ($launch->isResourceLaunch()) { // TODO resource } elseif ($launch->isSubmissionReviewLaunch()) { // TODO submission review } return $this->response; } }
The text was updated successfully, but these errors were encountered:
battis
No branches or pull requests
lti/packages/slim-lti-shim/src/Actions/LaunchAction.php
Line 25 in b436eea
The text was updated successfully, but these errors were encountered: