From 6d8e91bf4fff712a6664f7cc64d6329de57ba2e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=A4rtner?= Date: Fri, 30 Aug 2013 00:32:35 +0200 Subject: [PATCH] Fixed PHPDoc Blocks These ```RunTimeExceptions``` are NOT the native ones, therefor the should not be ```\``` in front of them. --- src/Symfony/Component/Process/Process.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index 520794ed54..bee8c9d9d7 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -289,8 +289,8 @@ class Process * * @return Process The new process * - * @throws \RuntimeException When process can't be launch or is stopped - * @throws \RuntimeException When process is already running + * @throws RuntimeException When process can't be launch or is stopped + * @throws RuntimeException When process is already running * * @see start() */ @@ -317,8 +317,8 @@ class Process * * @return integer The exitcode of the process * - * @throws \RuntimeException When process timed out - * @throws \RuntimeException When process stopped after receiving signal + * @throws RuntimeException When process timed out + * @throws RuntimeException When process stopped after receiving signal */ public function wait($callback = null) {