Skip to content

Commit 6cfd406

Browse files
committed
minor #9415 Fixing a typo on the mustRun method (gouaille)
This PR was merged into the 4.0 branch. Discussion ---------- Fixing a typo on the mustRun method On the mustRun method of the Process chapter, a bad argument is used on try {} catch{} section. Commits ------- b327ba8 Fixing a typo on the mustRun method
2 parents 4864722 + b327ba8 commit 6cfd406

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/process.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ with a non-zero code)::
106106

107107
echo $process->getOutput();
108108
} catch (ProcessFailedException $exception) {
109-
echo $e->getMessage();
109+
echo $exception->getMessage();
110110
}
111111

112112
Getting real-time Process Output

0 commit comments

Comments
 (0)