Browse Source

Use combined assignment contanation operator

pull/3458/merge
Gabriel Caruso 8 years ago
parent
commit
98b01a14e3
No known key found for this signature in database GPG Key ID: EA85C7988F5A6877
  1. 2
      run-tests.php

2
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;
}

Loading…
Cancel
Save