forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SubSystem Implementation #2
Comments
This also needs an entry in the {{lib/components.json}} file. |
mhughes2k
pushed a commit
that referenced
this issue
Mar 8, 2024
This patch fixes the following error: PHP Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in lib/upgradelib.php on line 1299
mhughes2k
pushed a commit
that referenced
this issue
Jun 21, 2024
This commit includes more changes, all them also adding the :void return type to unit tests missing them. The difference is that all these changes, while also detected perfectly by the moodle.PHPUnit.TestReturnType sniff, were not auto-fixed (like the previous commit ones), because all them do include some "return" statement and, for safety, we don't fix them. All the cases have been visually inspected and confirmed that the existing "return" statements always belong to anon functions within the test body and not the test own return statement.
mhughes2k
pushed a commit
that referenced
this issue
Aug 1, 2024
This patch fixes the following error: PHP Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in lib/upgradelib.php on line 1299
mhughes2k
pushed a commit
that referenced
this issue
Aug 1, 2024
This patch fixes the following error: PHP Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in lib/upgradelib.php on line 1299
mhughes2k
pushed a commit
that referenced
this issue
Aug 1, 2024
This commit includes more changes, all them also adding the :void return type to unit tests missing them. The difference is that all these changes, while also detected perfectly by the moodle.PHPUnit.TestReturnType sniff, were not auto-fixed (like the previous commit ones), because all them do include some "return" statement and, for safety, we don't fix them. All the cases have been visually inspected and confirmed that the existing "return" statements always belong to anon functions within the test body and not the test own return statement.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We want the BetterGroups to be a drop-in replacement for Moodle's current Group system in the /group directory.
So we're putting this in a "side-by-side" directory "groupng".
The text was updated successfully, but these errors were encountered: