diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-09-07 23:33:17 -0300 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-09-07 23:33:17 -0300 |
commit | 98b01a14e3f29a058952563cd90785227dcfb3f6 (patch) | |
tree | 9a99cdb822ac98cbb239de82fa4f075b2f3e0161 /run-tests.php | |
parent | 1038c4b4ce8c7d8eda724700ec2eab651c98e949 (diff) | |
download | php-git-98b01a14e3f29a058952563cd90785227dcfb3f6.tar.gz |
Use combined assignment contanation operator
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 38d905d268..df53645ef2 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2924,7 +2924,7 @@ function junit_path_to_classname($file_name) { array_shift($_tmp); } foreach ($_tmp as $p) { - $ret = $ret . "." . preg_replace(",[^a-z0-9]+,i", ".", $p); + $ret .= "." . preg_replace(",[^a-z0-9]+,i", ".", $p); } return $ret; } |