Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 29 changed files with 0 additions and 152 deletions.
6 changes: 0 additions & 6 deletions src/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,13 @@
* @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;
use Zend\Console\Exception;

/**
* @category Zend
* @package Zend_Console
* @subpackage Adapter
*/
abstract class AbstractAdapter implements AdapterInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Adapter/AdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 0 additions & 4 deletions src/Adapter/Posix.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
Expand Down
5 changes: 0 additions & 5 deletions src/Adapter/Virtual.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -14,10 +13,6 @@

/**
* Virtual buffer adapter
*
* @category Zend
* @package Zend_Console
* @subpackage Adapter
*/
class Virtual extends AbstractAdapter
{
Expand Down
6 changes: 0 additions & 6 deletions src/Adapter/Windows.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,13 @@
* @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;
use Zend\Console\Exception;

/**
* @category Zend
* @package Zend_Console
* @subpackage Adapter
*/
class Windows extends Virtual
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Adapter/WindowsAnsicon.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
{
Expand Down
5 changes: 0 additions & 5 deletions src/Charset/Ascii.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
4 changes: 0 additions & 4 deletions src/Charset/AsciiExtended.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
{
Expand Down
5 changes: 0 additions & 5 deletions src/Charset/CharsetInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
}
4 changes: 0 additions & 4 deletions src/Charset/DECSG.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
{
Expand Down
4 changes: 0 additions & 4 deletions src/Charset/Utf8.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
{
Expand Down
4 changes: 0 additions & 4 deletions src/Charset/Utf8Heavy.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
{
Expand Down
5 changes: 0 additions & 5 deletions src/Color/Xterm256.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/ColorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 0 additions & 4 deletions src/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@
* @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;

/**
* An static, utility class for interacting with Console environment.
* Declared abstract to prevent from instantiating.
*
* @category Zend
* @package Zend_Console
*/
abstract class Console
{
Expand Down
6 changes: 0 additions & 6 deletions src/Exception/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{

Expand Down
6 changes: 0 additions & 6 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
}
6 changes: 0 additions & 6 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
}
6 changes: 0 additions & 6 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Getopt.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 0 additions & 6 deletions src/Prompt/AbstractPrompt.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Prompt/Char.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
/**
Expand Down
Loading

0 comments on commit d34bdbb

Please sign in to comment.