MDL-81522 phpunit: Add missing void return type to all tests
While this change is not 100% required now, it's good habit and we are checking for it since Moodle 4.4. All the changes in this commit have been applied automatically using the moodle.PHPUnit.TestReturnType sniff and are, exclusively adding the ": void" return types when missing.
This commit is contained in:
@@ -28,7 +28,7 @@ class util_test extends \advanced_testcase {
|
||||
/**
|
||||
* @dataProvider set_table_modified_by_sql_provider
|
||||
*/
|
||||
public function test_set_table_modified_by_sql($sql, $expectations) {
|
||||
public function test_set_table_modified_by_sql($sql, $expectations): void {
|
||||
\phpunit_util::reset_updated_table_list();
|
||||
\phpunit_util::set_table_modified_by_sql($sql);
|
||||
foreach ($expectations as $table => $present) {
|
||||
|
||||
Reference in New Issue
Block a user