diff --git a/src/Symfony/Component/Console/Style/StyleInterface.php b/src/Symfony/Component/Console/Style/StyleInterface.php index 214782e393..2448547f85 100644 --- a/src/Symfony/Component/Console/Style/StyleInterface.php +++ b/src/Symfony/Component/Console/Style/StyleInterface.php @@ -12,7 +12,7 @@ namespace Symfony\Component\Console\Style; /** - * Output style helpers + * Output style helpers. * * @author Kevin Bond */ @@ -92,9 +92,9 @@ interface StyleInterface /** * Asks a question. * - * @param string $question - * @param string|null $default - * @param callable|null $validator + * @param string $question + * @param string|null $default + * @param callable|null $validator * * @return string */ @@ -132,7 +132,7 @@ interface StyleInterface public function choice($question, array $choices, $default = null); /** - * Add newline(s) + * Add newline(s). * * @param int $count The number of newlines */ diff --git a/src/Symfony/Component/Console/Style/SymfonyStyle.php b/src/Symfony/Component/Console/Style/SymfonyStyle.php index 1ccccc9df3..2bf20db0f7 100644 --- a/src/Symfony/Component/Console/Style/SymfonyStyle.php +++ b/src/Symfony/Component/Console/Style/SymfonyStyle.php @@ -52,11 +52,11 @@ class SymfonyStyle extends OutputStyle /** * Formats a message as a block of text. * - * @param string|array $messages The message to write in the block - * @param string|null $type The block type (added in [] on first line) - * @param string|null $style The style to apply to the whole block - * @param string $prefix The prefix for the block - * @param bool $padding Whether to add vertical padding + * @param string|array $messages The message to write in the block + * @param string|null $type The block type (added in [] on first line) + * @param string|null $style The style to apply to the whole block + * @param string $prefix The prefix for the block + * @param bool $padding Whether to add vertical padding */ public function block($messages, $type = null, $style = null, $prefix = ' ', $padding = false) {