Skip to content

Commit d0ae7c3

Browse files
javiereguiluzxabbuh
authored andcommitted
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
1 parent f180b1a commit d0ae7c3

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
@@ -65,7 +65,7 @@ with a non-zero code)::
6565

6666
echo $process->getOutput();
6767
} catch (ProcessFailedException $exception) {
68-
echo $e->getMessage();
68+
echo $exception->getMessage();
6969
}
7070

7171
Getting real-time Process Output

0 commit comments

Comments
 (0)