moodle/webservice
Eloy Lafuente (stronk7) 9d6aa39985 MDL-71583 versions: Add all the missing full-stops to version/requires
It seems that the new phpcs3 checker is now controlling those
line comments that previously were ignored.

This commit just looks for all the cases and bulk-add
them when needed. The bash script (mac) used to add all them is:

while read -r line; do
    arr=(${line//:/ })
    if [[ -n ${arr[0]} ]] && [[ -n ${arr[1]} ]]; then
        echo "  file ${arr[0]}, line ${arr[1]}"
        sed -i "${arr[1]}s/\$/\./" ${arr[0]}
    fi
done < <(find . -name version.php | xargs ag --nomultiline '>(version|requires) *=.*//.*[^;\.]$')
2021-05-11 20:11:07 +02:00
..
classes MDL-71099 Lib: Move new user_fields class from core to core_user 2021-03-25 13:47:23 +00:00
rest MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
soap MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
tests MDL-67748 admin: Add Behat tests for tokens filtering features 2021-03-16 10:51:39 +01:00
xmlrpc MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
draftfile.php MDL-70128 webservice: New entry point for draftfiles 2020-12-03 14:28:12 +01:00
externallib.php Merge branch 'MDL-65550-master' of git://github.com/jleyva/moodle 2019-09-05 11:38:36 +08:00
lib.php MDL-71215 core_user: User fields - remaining deprecated functions 2021-03-31 11:12:16 +01:00
pluginfile.php MDL-58741 webservice: Add missing params to webservice/pluginfile.php 2017-04-27 17:04:01 +02:00
recaptcha.php MDL-61600 recaptcha: Create a script to display recaptcha 2018-03-14 10:31:09 +01:00
renderer.php MDL-71215 core_user: User fields - remaining deprecated functions 2021-03-31 11:12:16 +01:00
upgrade.txt MDL-67748 admin: Improve get_missing_capabilities_by_users() 2021-03-15 21:24:06 +01:00
upload.php MDL-60302 webservice: Allow CORS requests in webservice/upload.php 2017-10-04 12:39:51 +02:00
wsdoc.php MDL-66847 webservice: Correct breadcrumb + title for ws documentation. 2020-02-11 12:17:39 +01:00