We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Good day team, there are a few places that could need a bit of a refactor to comply with Moodle coding style standard.
Description
In the file 'lib.php' which you can see here https://github.com/xAPI-vle/moodle-logstore_xapi/blob/master/lib.php, contains a few constants with names that do not comply with Moodle coding standard. In particular they lack the Frankenstyle with the plugin name that you can check here: https://docs.moodle.org/dev/Coding_style#Constants, for example:
define('XAPI_IMPORT_TYPE_HISTORIC', 1); define('XAPI_IMPORT_TYPE_FAILED', 2);
This should be:
define('LOGSTORE_XAPI_IMPORT_TYPE_HISTORIC', 1); define('LOGSTORE_XAPI_IMPORT_TYPE_FAILED', 2);
Version
Expected behaviour
Actual behaviour
Thank you so much for you attention.
The text was updated successfully, but these errors were encountered:
Thanks for the heads up on this! Feel free to submit a PR if you have some time.
Sorry, something went wrong.
No branches or pull requests
Good day team, there are a few places that could need a bit of a refactor to comply with Moodle coding style standard.
Description
In the file 'lib.php' which you can see here https://github.com/xAPI-vle/moodle-logstore_xapi/blob/master/lib.php, contains a few constants with names that do not comply with Moodle coding standard. In particular they lack the Frankenstyle with the plugin name that you can check here: https://docs.moodle.org/dev/Coding_style#Constants, for example:
This should be:
Version
Expected behaviour
Actual behaviour
Thank you so much for you attention.
The text was updated successfully, but these errors were encountered: