Skip to content

Commit

Permalink
Fixing classes load.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Sep 22, 2023
1 parent 9b1be2f commit b16ad9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

services:
postgres:
image: postgres:12
image: postgres:13
env:
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
Expand Down
3 changes: 2 additions & 1 deletion db/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

require_once($CFG->dirroot . '/mod/verbalfeedback/classes/vendor/autoload.php');
require_once($CFG->dirroot . '/mod/verbalfeedback/db/upgradelib.php');
require_once($CFG->dirroot . '/mod/verbalfeedback/classes/vendor/dallgoot/yaml/sources/Yaml.php');

use mod_verbalfeedback\model\language;
use mod_verbalfeedback\model\localized_string;
Expand All @@ -38,8 +39,8 @@
use mod_verbalfeedback\repository\template_category_repository;
use mod_verbalfeedback\repository\template_criterion_repository;
use mod_verbalfeedback\repository\template_repository;
use Dallgoot\Yaml;
use mod_verbalfeedback\model\subrating;
use Dallgoot\Yaml;

/**
* Install the plugin.
Expand Down

0 comments on commit b16ad9a

Please sign in to comment.