From af0149d6386fc3609d65733856579f74b0fe15df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Simon?= Date: Mon, 6 Aug 2012 21:34:56 +0200 Subject: [PATCH] [Console] Added some precision in OutputInterface::write docblock. --- src/Symfony/Component/Console/Output/OutputInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Console/Output/OutputInterface.php b/src/Symfony/Component/Console/Output/OutputInterface.php index 88ffba8878..f36ae034cb 100644 --- a/src/Symfony/Component/Console/Output/OutputInterface.php +++ b/src/Symfony/Component/Console/Output/OutputInterface.php @@ -35,7 +35,7 @@ interface OutputInterface * * @param string|array $messages The message as an array of lines of a single string * @param Boolean $newline Whether to add a newline or not - * @param integer $type The type of output + * @param integer $type The type of output (0: normal, 1: raw, 2: plain) * * @throws \InvalidArgumentException When unknown output type is given * @@ -47,7 +47,7 @@ interface OutputInterface * Writes a message to the output and adds a newline at the end. * * @param string|array $messages The message as an array of lines of a single string - * @param integer $type The type of output + * @param integer $type The type of output (0: normal, 1: raw, 2: plain) * * @api */