diff --git a/src/Adapter/AbstractAdapter.php b/src/Adapter/AbstractAdapter.php index 53d3285..ea1ddb8 100644 --- a/src/Adapter/AbstractAdapter.php +++ b/src/Adapter/AbstractAdapter.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Adapter; @@ -13,11 +12,6 @@ use Zend\Console\Charset; use Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Adapter - */ abstract class AbstractAdapter implements AdapterInterface { /** diff --git a/src/Adapter/AdapterInterface.php b/src/Adapter/AdapterInterface.php index e823740..2b9e320 100644 --- a/src/Adapter/AdapterInterface.php +++ b/src/Adapter/AdapterInterface.php @@ -5,17 +5,12 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Adapter; use Zend\Console\Charset\CharsetInterface; -/** - * @category Zend - * @package Zend_Console - */ interface AdapterInterface { const LINE_NONE = 1; diff --git a/src/Adapter/Posix.php b/src/Adapter/Posix.php index 30e504b..d3e6f5c 100644 --- a/src/Adapter/Posix.php +++ b/src/Adapter/Posix.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Adapter; @@ -18,9 +17,6 @@ /** * @todo Add GNU readline support - * @category Zend - * @package Zend_Console - * @subpackage Adapter * @link http://en.wikipedia.org/wiki/ANSI_escape_code */ class Posix extends AbstractAdapter diff --git a/src/Adapter/Virtual.php b/src/Adapter/Virtual.php index aa09ab6..3f25a1c 100644 --- a/src/Adapter/Virtual.php +++ b/src/Adapter/Virtual.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Adapter; @@ -14,10 +13,6 @@ /** * Virtual buffer adapter - * - * @category Zend - * @package Zend_Console - * @subpackage Adapter */ class Virtual extends AbstractAdapter { diff --git a/src/Adapter/Windows.php b/src/Adapter/Windows.php index 074cfcd..7f40a35 100644 --- a/src/Adapter/Windows.php +++ b/src/Adapter/Windows.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Adapter; @@ -13,11 +12,6 @@ use Zend\Console\Charset; use Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Adapter - */ class Windows extends Virtual { /** diff --git a/src/Adapter/WindowsAnsicon.php b/src/Adapter/WindowsAnsicon.php index 761b72e..b487505 100644 --- a/src/Adapter/WindowsAnsicon.php +++ b/src/Adapter/WindowsAnsicon.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Adapter; @@ -27,10 +26,6 @@ * Console should not run in UTF8 code page (65001), because ANSICON does not behave well with it. * It's best to use non-unicode code page 437, 850, 851, 852 or similar. Run "help mode" for more * information on how to change Windows console code page. - * - * @category Zend - * @package Zend_Console - * @subpackage Adapter */ class WindowsAnsicon extends Posix { diff --git a/src/Charset/Ascii.php b/src/Charset/Ascii.php index 77796e8..4bda285 100644 --- a/src/Charset/Ascii.php +++ b/src/Charset/Ascii.php @@ -5,17 +5,12 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Charset; /** * Basic (low) ASCII line drawing characters. - * - * @category Zend - * @package Zend_Console - * @subpackage Charset */ class Ascii implements CharsetInterface { diff --git a/src/Charset/AsciiExtended.php b/src/Charset/AsciiExtended.php index 81a5e90..8561d71 100644 --- a/src/Charset/AsciiExtended.php +++ b/src/Charset/AsciiExtended.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Charset; @@ -14,9 +13,6 @@ * Extended ASCII character set (positions 127+, MS DOS & Windows compatible) * * @link http://en.wikipedia.org/wiki/Box-drawing_characters - * @category Zend - * @package Zend_Console - * @subpackage Charset */ class AsciiExtended implements CharsetInterface { diff --git a/src/Charset/CharsetInterface.php b/src/Charset/CharsetInterface.php index 246d8cb..138f642 100644 --- a/src/Charset/CharsetInterface.php +++ b/src/Charset/CharsetInterface.php @@ -5,15 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Charset; -/** - * @category Zend - * @package Zend_Console - */ interface CharsetInterface { } diff --git a/src/Charset/DECSG.php b/src/Charset/DECSG.php index d829ec7..038809a 100644 --- a/src/Charset/DECSG.php +++ b/src/Charset/DECSG.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Charset; @@ -14,9 +13,6 @@ * DEC Special Graphics (VT100 line drawing) character set * * @link http://vt100.net/docs/vt220-rm/table2-4.html - * @category Zend - * @package Zend_Console - * @subpackage Charset */ class DECSG implements CharsetInterface { diff --git a/src/Charset/Utf8.php b/src/Charset/Utf8.php index dd88274..634e7b4 100644 --- a/src/Charset/Utf8.php +++ b/src/Charset/Utf8.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Charset; @@ -14,9 +13,6 @@ * UTF-8 box drawing * * @link http://en.wikipedia.org/wiki/Box-drawing_characters - * @category Zend - * @package Zend_Console - * @subpackage Charset */ class Utf8 implements CharsetInterface { diff --git a/src/Charset/Utf8Heavy.php b/src/Charset/Utf8Heavy.php index 4c41456..cad5ac7 100644 --- a/src/Charset/Utf8Heavy.php +++ b/src/Charset/Utf8Heavy.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Charset; @@ -14,9 +13,6 @@ * UTF-8 box drawing (modified to use heavy single lines) * * @link http://en.wikipedia.org/wiki/Box-drawing_characters - * @category Zend - * @package Zend_Console - * @subpackage Charset */ class Utf8Heavy extends Utf8 { diff --git a/src/Color/Xterm256.php b/src/Color/Xterm256.php index dcb2618..f2b5ae6 100644 --- a/src/Color/Xterm256.php +++ b/src/Color/Xterm256.php @@ -5,15 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Color; -/** - * @category Zend - * @package Zend_Console - */ class Xterm256 { /** diff --git a/src/ColorInterface.php b/src/ColorInterface.php index 8629d85..fa5d321 100644 --- a/src/ColorInterface.php +++ b/src/ColorInterface.php @@ -5,15 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console; -/** - * @category Zend - * @package Zend_Console - */ interface ColorInterface { const NORMAL = 0; diff --git a/src/Console.php b/src/Console.php index 8199429..7389e60 100644 --- a/src/Console.php +++ b/src/Console.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console; @@ -13,9 +12,6 @@ /** * An static, utility class for interacting with Console environment. * Declared abstract to prevent from instantiating. - * - * @category Zend - * @package Zend_Console */ abstract class Console { diff --git a/src/Exception/BadMethodCallException.php b/src/Exception/BadMethodCallException.php index 6ad6dc2..f95109c 100644 --- a/src/Exception/BadMethodCallException.php +++ b/src/Exception/BadMethodCallException.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Exception - */ class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface { diff --git a/src/Exception/ExceptionInterface.php b/src/Exception/ExceptionInterface.php index 301c316..b0893dd 100644 --- a/src/Exception/ExceptionInterface.php +++ b/src/Exception/ExceptionInterface.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Exception - */ interface ExceptionInterface { } diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index 6fc8d8e..3380d5c 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Exception - */ class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface { } diff --git a/src/Exception/RuntimeException.php b/src/Exception/RuntimeException.php index 842f5b7..21e2771 100644 --- a/src/Exception/RuntimeException.php +++ b/src/Exception/RuntimeException.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Exception - */ class RuntimeException extends \RuntimeException implements ExceptionInterface { /** diff --git a/src/Getopt.php b/src/Getopt.php index aa1a644..e7de857 100644 --- a/src/Getopt.php +++ b/src/Getopt.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console; @@ -68,11 +67,6 @@ * Example: 'abc:' means options '-a', '-b', and '-c' * are legal, and the latter requires a string parameter. * - * @category Zend - * @package Zend_Console_Getopt - * @version Release: @package_version@ - * @since Class available since Release 0.6.0 - * * @todo Handle flags that implicitly print usage message, e.g. --help * * @todo Enable user to specify header and footer content in the help message. diff --git a/src/Prompt/AbstractPrompt.php b/src/Prompt/AbstractPrompt.php index be4b31c..a292d76 100644 --- a/src/Prompt/AbstractPrompt.php +++ b/src/Prompt/AbstractPrompt.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; @@ -15,11 +14,6 @@ use Zend\Console\Adapter\AdapterInterface as ConsoleAdapter; use Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Prompt - */ abstract class AbstractPrompt implements PromptInterface { /** diff --git a/src/Prompt/Char.php b/src/Prompt/Char.php index 8612535..5244e2b 100644 --- a/src/Prompt/Char.php +++ b/src/Prompt/Char.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; -/** - * @category Zend - * @package Zend_Console - * @subpackage Prompt - */ class Char extends AbstractPrompt { /** diff --git a/src/Prompt/Confirm.php b/src/Prompt/Confirm.php index b966731..2970693 100644 --- a/src/Prompt/Confirm.php +++ b/src/Prompt/Confirm.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; -/** - * @category Zend - * @package Zend_Console - * @subpackage Prompt - */ class Confirm extends Char { /** diff --git a/src/Prompt/Line.php b/src/Prompt/Line.php index eeaa499..f6f4824 100644 --- a/src/Prompt/Line.php +++ b/src/Prompt/Line.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; -/** - * @category Zend - * @package Zend_Console - * @subpackage Prompt - */ class Line extends AbstractPrompt { /** diff --git a/src/Prompt/Number.php b/src/Prompt/Number.php index 5885bcd..61f0e62 100644 --- a/src/Prompt/Number.php +++ b/src/Prompt/Number.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; -/** - * @category Zend - * @package Zend_Console - * @subpackage Prompt - */ class Number extends Line { /** diff --git a/src/Prompt/PromptInterface.php b/src/Prompt/PromptInterface.php index f383c8f..4f1ece4 100644 --- a/src/Prompt/PromptInterface.php +++ b/src/Prompt/PromptInterface.php @@ -5,17 +5,12 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; use Zend\Console\Adapter\AdapterInterface as ConsoleAdapter; -/** - * @category Zend - * @package Zend_Console - */ interface PromptInterface { /** diff --git a/src/Prompt/Select.php b/src/Prompt/Select.php index 73acb11..6eb5e42 100644 --- a/src/Prompt/Select.php +++ b/src/Prompt/Select.php @@ -5,18 +5,12 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console\Prompt; use Zend\Console\Exception; -/** - * @category Zend - * @package Zend_Console - * @subpackage Prompt - */ class Select extends Char { /** diff --git a/src/Request.php b/src/Request.php index 82e8919..1aaa55f 100644 --- a/src/Request.php +++ b/src/Request.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console; @@ -14,10 +13,6 @@ use Zend\Stdlib\Parameters; use Zend\Stdlib\RequestInterface; -/** - * @category Zend - * @package Zend_Console - */ class Request extends Message implements RequestInterface { /** diff --git a/src/Response.php b/src/Response.php index e896b2c..50426c1 100644 --- a/src/Response.php +++ b/src/Response.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Console */ namespace Zend\Console; @@ -13,10 +12,6 @@ use Zend\Stdlib\Message; use Zend\Stdlib\ResponseInterface; -/** - * @category Zend - * @package Zend_Console - */ class Response extends Message implements ResponseInterface {