From 370d2d1f798e2c226189571887b5b66e69195a1f Mon Sep 17 00:00:00 2001 From: Jon Gotlin Date: Mon, 24 Sep 2012 12:12:34 +0300 Subject: [PATCH] Fully qualified classname-fix --- components/process.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/process.rst b/components/process.rst index e2a9bae0995..8887e14f9ed 100644 --- a/components/process.rst +++ b/components/process.rst @@ -28,7 +28,7 @@ a command in a sub-process:: $process->setTimeout(3600); $process->run(); if (!$process->isSuccessful()) { - throw new RuntimeException($process->getErrorOutput()); + throw new \RuntimeException($process->getErrorOutput()); } print $process->getOutput();