mirror of
https://github.com/composer/composer
synced 2025-05-10 09:02:59 +00:00
Fix minor bug in process executor mock
This commit is contained in:
parent
f95471f221
commit
6e205a0c84
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class ProcessExecutorMock extends ProcessExecutor
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($stdout) {
|
if ($stdout) {
|
||||||
call_user_func($callback, Process::STDOUT, $stdout);
|
call_user_func($callback, Process::OUT, $stdout);
|
||||||
}
|
}
|
||||||
if ($stderr) {
|
if ($stderr) {
|
||||||
call_user_func($callback, Process::ERR, $stderr);
|
call_user_func($callback, Process::ERR, $stderr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue