From e0f59242938bd1d33583817065bed0cfe6f71d1f Mon Sep 17 00:00:00 2001 From: Mathias Kahl Date: Fri, 20 Oct 2023 14:32:48 +0200 Subject: [PATCH] PM-43087 fixed linting issue --- CHANGES.md | 2 +- classes/lti_flow.php | 4 ++-- version.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 16333a2..142f0aa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -### v1.0.23 (Build - 2023102003) +### v1.0.23 (Build - 2023102004) * Send plugin version number to Kialo. * Fix help center link. diff --git a/classes/lti_flow.php b/classes/lti_flow.php index 4ce2e9d..2ffb869 100644 --- a/classes/lti_flow.php +++ b/classes/lti_flow.php @@ -158,7 +158,7 @@ public static function init_resource_link( // See https://www.imsglobal.org/spec/lti/v1p3#context-claim. "https://purl.imsglobal.org/spec/lti/claim/context" => [ "id" => $courseid, - ] + ], ], ); } @@ -282,7 +282,7 @@ public static function init_deep_link(int $courseid, string $moodleuserid, strin // See https://www.imsglobal.org/spec/lti/v1p3#context-claim. "https://purl.imsglobal.org/spec/lti/claim/context" => [ "id" => $courseid, - ] + ], ] ); } diff --git a/version.php b/version.php index e3c5199..e893239 100644 --- a/version.php +++ b/version.php @@ -28,8 +28,8 @@ $plugin->component = 'mod_kialo'; // See https://moodledev.io/docs/apis/commonfiles/version.php. -$plugin->version = 2023102003; // Must be incremented for each new release! -$plugin->release = '1.0.23-beta3'; // Semantic version. +$plugin->version = 2023102004; // Must be incremented for each new release! +$plugin->release = '1.0.23-beta4'; // Semantic version. // Officially we require PHP 7.4. The first Moodle version that requires this as a minimum is Moodle 4.1. // But technically this plugin also runs on older Moodle versions, as long as they run on PHP 7.4,