Skip to content

Commit a2a3c23

Browse files
committed
Merge pull request #1741 from jongotlin/patch-1
Fully qualified classname-fix
2 parents 008f1e1 + 370d2d1 commit a2a3c23

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
@@ -28,7 +28,7 @@ a command in a sub-process::
2828
$process->setTimeout(3600);
2929
$process->run();
3030
if (!$process->isSuccessful()) {
31-
throw new RuntimeException($process->getErrorOutput());
31+
throw new \RuntimeException($process->getErrorOutput());
3232
}
3333

3434
print $process->getOutput();

0 commit comments

Comments
 (0)