moodle/mnet
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 Merge branch 'MDL-62264-master' of git://github.com/cescobedo/moodle 2018-05-03 14:03:29 +08:00
service/enrol MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:00:11 +02:00
tests MDL-67673 phpunit: Fix the return type of template methods 2020-10-21 12:46:04 +02:00
xmlrpc MDL-69050 lang: Fix few remaining places spotted during integration 2020-10-01 13:01:58 +02:00
environment.php MDL-52285 auth: use __construct() for constructors 2015-12-10 13:40:42 +08:00
lib.php MDL-57775 xmlrpc: Pass escaping to xmlrpc_encode_request() calls 2017-08-15 21:43:34 +02:00
peer.php MDL-70893 various: optional function arguments must be in the end 2021-02-15 16:54:01 +01:00
publickey.php MDL-35628 performance: Remove dirname() where possible. 2016-06-10 08:06:49 +10:00
remote_client.php