Skip to content

Commit

Permalink
Bump moodle-cs to 3.3.3
Browse files Browse the repository at this point in the history
And revert some changes that were done for previous release, about
spacing before assignment, they aren't needed any more. See:

moodlehq/moodle-cs#44
  • Loading branch information
stronk7 committed Mar 14, 2023
1 parent 2d83e86 commit c23e7e0
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
],
"require": {
"php": ">=7.0.8",
"moodlehq/moodle-cs": "^3.3.2",
"moodlehq/moodle-cs": "^3.3.3",
"moodlehq/moodle-local_ci": "^1.0.17",
"moodlehq/moodle-local_moodlecheck": "^1.1.4",
"sebastian/phpcpd": "^3.0",
Expand Down
26 changes: 13 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tests/Fixture/moodle-local_ci/db/access.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@

$capabilities = [
'local/travis:view' => [
'captype' => 'read',
'captype' => 'read',
'contextlevel' => CONTEXT_SYSTEM,
'archetypes' => [
'teacher' => CAP_ALLOW,
'archetypes' => [
'teacher' => CAP_ALLOW,
'editingteacher' => CAP_ALLOW,
'manager' => CAP_ALLOW,
'manager' => CAP_ALLOW,
],
],
];
8 changes: 4 additions & 4 deletions tests/Fixture/moodle-local_ci/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
defined('MOODLE_INTERNAL') || die();

/** @var object $plugin */
$plugin->version = 2015071000;
$plugin->requires = 2014051200; // Moodle 2.7.
$plugin->component = 'local_ci';
$plugin->version = 2015071000;
$plugin->requires = 2014051200; // Moodle 2.7.
$plugin->component = 'local_ci';
$plugin->dependencies = ['mod_forum' => ANY_VERSION];
$plugin->maturity = MATURITY_STABLE;
$plugin->maturity = MATURITY_STABLE;

0 comments on commit c23e7e0

Please sign in to comment.