Skip to content

Commit 4bde917

Browse files
Merge branch '6.4' into 7.3
* 6.4: Replace backtick operator, deprecated in PHP 8.5, with shell_exec() [DependencyInjection] Add test case to ensure XML parse exception message includes filename and position [Serializer] Fix normalizing objects with accessors having the same name as a property [SecurityBundle] Prevent accessing the tracked token storage when collecting data
2 parents 7954e56 + 0dc1578 commit 4bde917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/simple-phpunit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
}
195195

196196
$info = [];
197-
foreach (explode("\n", `$COMPOSER info --no-ansi -a -n phpunit/phpunit "$PHPUNIT_VERSION.*"`) as $line) {
197+
foreach (explode("\n", shell_exec("$COMPOSER info --no-ansi -a -n phpunit/phpunit \"$PHPUNIT_VERSION.*\"")) as $line) {
198198
$line = rtrim($line);
199199

200200
if (!$info && preg_match('/^versions +: /', $line)) {

0 commit comments

Comments
 (0)