moodle/webservice/rest
Eloy Lafuente (stronk7) 0524a0b9f9 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:00:11 +02:00
..
classes/privacy MDL-61903 webservice: Implement null privacy provider 2018-04-17 09:19:59 +08:00
db MDL-50613 webservice: Remove risk bit masks for Web Service protocols 2015-09-30 09:34:23 +02:00
lang/en MDL-61903 webservice: Implement null privacy provider 2018-04-17 09:19:59 +08:00
tests MDL-46934 webservice_rest: Fixed undefined index on XML output 2016-05-20 17:03:23 +08:00
lib.php MDL-30994 webservice API, check and update DocBlock 2012-03-02 09:49:41 +08:00
locallib.php MDL-54799 webservice: Handle exception in WS format ASAP 2019-11-29 09:44:09 +01:00
server.php MDL-54799 webservice: Handle exception in WS format ASAP 2019-11-29 09:44:09 +01:00
simpleserver.php MDL-59808 webservice_rest: comply with restformat argument 2017-09-07 08:34:10 +08:00
version.php MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:00:11 +02:00