From d77ad5079e6bfd7c87f719a5ff24e37c86fe0be3 Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Sun, 18 Aug 2024 10:10:32 +0200 Subject: [PATCH] Make codechecker happy again --- classes/privacy/provider.php | 4 ++-- lib.php | 2 +- tests/block_cohortspecifichtml_test.php | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/classes/privacy/provider.php b/classes/privacy/provider.php index d0cc3dc..cc4ea87 100644 --- a/classes/privacy/provider.php +++ b/classes/privacy/provider.php @@ -51,7 +51,7 @@ class provider implements \core_privacy\local\metadata\provider, * @param collection $collection The initialised collection to add items to. * @return collection A listing of user data stored through this system. */ - public static function get_metadata(collection $collection) : collection { + public static function get_metadata(collection $collection): collection { $collection->link_subsystem('block', 'privacy:metadata:block'); return $collection; @@ -63,7 +63,7 @@ public static function get_metadata(collection $collection) : collection { * @param int $userid The user to search. * @return contextlist $contextlist The contextlist containing the list of contexts used in this plugin. */ - public static function get_contexts_for_userid(int $userid) : \core_privacy\local\request\contextlist { + public static function get_contexts_for_userid(int $userid): \core_privacy\local\request\contextlist { // This block doesn't know who information is stored against unless it // is at the user context. $contextlist = new \core_privacy\local\request\contextlist(); diff --git a/lib.php b/lib.php index d0e6e30..a948468 100644 --- a/lib.php +++ b/lib.php @@ -134,7 +134,7 @@ function block_cohortspecifichtml_global_db_replace($search, $replace) { * @param array $args The path (the part after the filearea and before the filename). * @return array The itemid and the filepath inside the $args path, for the defined filearea. */ -function block_cohortspecifichtml_get_path_from_pluginfile(string $filearea, array $args) : array { +function block_cohortspecifichtml_get_path_from_pluginfile(string $filearea, array $args): array { // This block never has an itemid (the number represents the revision but it's not stored in database). array_shift($args); diff --git a/tests/block_cohortspecifichtml_test.php b/tests/block_cohortspecifichtml_test.php index baa0076..aae8531 100644 --- a/tests/block_cohortspecifichtml_test.php +++ b/tests/block_cohortspecifichtml_test.php @@ -22,6 +22,7 @@ * @package block_cohortspecifichtml * @copyright 2023 Alexander Bias * based on code from 2022 Open LMS (https://www.openlms.net/) Petr Skoda + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * * @coversDefaultClass \block_cohortspecifichtml */