Skip to content

Commit

Permalink
Make codechecker happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Aug 18, 2024
1 parent ee14f7f commit f3b0819
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions classes/privacy/provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
5 changes: 3 additions & 2 deletions tests/block_cohortspecifichtml_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@
* @package block_cohortspecifichtml
* @copyright 2023 Alexander Bias <[email protected]>
* 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
*/
class block_cohortspecifichtml_test extends \advanced_testcase {
final class block_cohortspecifichtml_test extends \advanced_testcase {
/**
* Tests instance files copying.
* @covers ::instance_copy
*/
public function test_instance_copy() {
public function test_instance_copy(): void {
global $USER;
$this->resetAfterTest();

Expand Down
16 changes: 8 additions & 8 deletions tests/privacy/privacy_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* based on code from 2018 Andrew Nicols <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class privacy_test extends \core_privacy\tests\provider_testcase {
final class privacy_test extends \core_privacy\tests\provider_testcase {
/**
* Get the list of standard format options for comparison.
*
Expand Down Expand Up @@ -166,7 +166,7 @@ protected function construct_course_page(\stdClass $course) {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_user_block() {
public function test_user_block(): void {
$this->resetAfterTest();

$title = 'Example title';
Expand Down Expand Up @@ -213,7 +213,7 @@ public function test_user_block() {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_user_block_unconfigured() {
public function test_user_block_unconfigured(): void {
global $DB;

$this->resetAfterTest();
Expand Down Expand Up @@ -253,7 +253,7 @@ public function test_user_block_unconfigured() {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_user_multiple_blocks_exported() {
public function test_user_multiple_blocks_exported(): void {
$this->resetAfterTest();

$title = 'Example title';
Expand Down Expand Up @@ -301,7 +301,7 @@ public function test_user_multiple_blocks_exported() {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_course_blocks_not_exported() {
public function test_course_blocks_not_exported(): void {
$this->resetAfterTest();

$title = 'Example title';
Expand Down Expand Up @@ -330,7 +330,7 @@ public function test_course_blocks_not_exported() {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_mixed_multiple_blocks_exported() {
public function test_mixed_multiple_blocks_exported(): void {
$this->resetAfterTest();

$title = 'Example title';
Expand Down Expand Up @@ -372,7 +372,7 @@ public function test_mixed_multiple_blocks_exported() {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_get_users_in_context() {
public function test_get_users_in_context(): void {
$this->resetAfterTest();

$component = 'block_cohortspecifichtml';
Expand Down Expand Up @@ -419,7 +419,7 @@ public function test_get_users_in_context() {
* It is adopted from block_html and does not have a coverage tag there either. Thus, we set coversNothing.
* @coversNothing
*/
public function test_delete_data_for_users() {
public function test_delete_data_for_users(): void {
$this->resetAfterTest();

$component = 'block_cohortspecifichtml';
Expand Down

0 comments on commit f3b0819

Please sign in to comment.