summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-09-07 23:33:17 -0300
committerGabriel Caruso <carusogabriel34@gmail.com>2018-09-07 23:33:17 -0300
commit98b01a14e3f29a058952563cd90785227dcfb3f6 (patch)
tree9a99cdb822ac98cbb239de82fa4f075b2f3e0161 /run-tests.php
parent1038c4b4ce8c7d8eda724700ec2eab651c98e949 (diff)
downloadphp-git-98b01a14e3f29a058952563cd90785227dcfb3f6.tar.gz
Use combined assignment contanation operator
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
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;
}