Skip to content

Commit 0c10954

Browse files
committed
more fixes to pass code checks
1 parent 4c19ee6 commit 0c10954

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- 5432:5432
1717
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
1818
mariadb:
19-
image: mariadb:10
19+
image: mariadb:12
2020
env:
2121
MYSQL_USER: 'root'
2222
MYSQL_ALLOW_EMPTY_PASSWORD: "true"

classes/plugininfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public static function get_plugin_configuration_for_context(
109109

110110
$data = [
111111
'params' => $params,
112-
'fpoptions' => $fpoptions
112+
'fpoptions' => $fpoptions,
113113
];
114114

115115
return [

classes/privacy/provider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU General Public License
1515
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
16+
1617
/**
1718
* Privacy Subsystem implementation for tiny_sketch.
1819
*
@@ -36,7 +37,7 @@ class provider implements \core_privacy\local\metadata\null_provider {
3637
*
3738
* @return string
3839
*/
39-
public static function get_reason() : string {
40+
public static function get_reason(): string {
4041
return 'privacy:metadata';
4142
}
4243
}

0 commit comments

Comments
 (0)