diff --git a/src/Console/ConsoleIo.php b/src/Console/ConsoleIo.php index 5fe941c6b56..bcc60c4c76d 100644 --- a/src/Console/ConsoleIo.php +++ b/src/Console/ConsoleIo.php @@ -110,7 +110,7 @@ public function level($level = null) { } /** - * Output only at the verbose level. + * Output at the verbose level. * * @param string|array $message A string or a an array of strings to output * @param integer $newlines Number of newlines to append @@ -146,7 +146,6 @@ public function quiet($message, $newlines = 1) { * @param integer $newlines Number of newlines to append * @param integer $level The message's output level, see above. * @return integer|boolean Returns the number of bytes returned from writing to stdout. - * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::out */ public function out($message = null, $newlines = 1, $level = ConsoleIo::NORMAL) { if ($level <= $this->_level) { @@ -195,7 +194,6 @@ public function overwrite($message, $newlines = 1, $size = null) { * @param string|array $message A string or a an array of strings to output * @param integer $newlines Number of newlines to append * @return void - * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::err */ public function err($message = null, $newlines = 1) { $this->_err->write($message, $newlines); @@ -206,7 +204,6 @@ public function err($message = null, $newlines = 1) { * * @param integer $multiplier Number of times the linefeed sequence should be repeated * @return string - * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::nl */ public function nl($multiplier = 1) { return str_repeat(ConsoleOutput::LF, $multiplier); @@ -218,7 +215,6 @@ public function nl($multiplier = 1) { * @param integer $newlines Number of newlines to pre- and append * @param integer $width Width of the line, defaults to 63 * @return void - * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::hr */ public function hr($newlines = 0, $width = 63) { $this->out(null, $newlines); @@ -232,7 +228,6 @@ public function hr($newlines = 0, $width = 63) { * @param string $prompt Prompt text. * @param string $default Default input value. * @return mixed Either the default value, or the user-provided input. - * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::in */ public function ask($prompt, $default = null) { return $this->_getInput($prompt, null, $default); @@ -245,7 +240,6 @@ public function ask($prompt, $default = null) { * @param string|array $options Array or string of options. * @param string $default Default input value. * @return mixed Either the default value, or the user-provided input. - * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::in */ public function askChoice($prompt, $options, $default = null) { $originalOptions = $options;