1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00

Fix minor bug in process executor mock

This commit is contained in:
Jordi Boggiano 2022-08-17 13:23:16 +02:00
parent f95471f221
commit 6e205a0c84
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC

View file

@ -178,7 +178,7 @@ class ProcessExecutorMock extends ProcessExecutor
}
if ($stdout) {
call_user_func($callback, Process::STDOUT, $stdout);
call_user_func($callback, Process::OUT, $stdout);
}
if ($stderr) {
call_user_func($callback, Process::ERR, $stderr);