[Console] changed the subpackage from cli to console

This commit is contained in:
Fabien Potencier 2010-01-11 14:39:52 +01:00
parent 7074036924
commit 4dd35ff8cc
18 changed files with 18 additions and 18 deletions

View File

@ -38,7 +38,7 @@ use Symfony\Components\Console\Command\ListCommand;
* $app->run();
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Application

View File

@ -23,7 +23,7 @@ use Symfony\Components\Console\Application;
* Base class for all commands.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Command

View File

@ -22,7 +22,7 @@ use Symfony\Components\Console\Command\Command;
* HelpCommand displays the help for a given command.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class HelpCommand extends Command

View File

@ -22,7 +22,7 @@ use Symfony\Components\Console\Command\Command;
* ListCommand displays the list of all available commands for the application.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ListCommand extends Command

View File

@ -32,7 +32,7 @@ namespace Symfony\Components\Console\Input;
* `StringInput` when you want to provide your own input.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*
* @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html

View File

@ -19,7 +19,7 @@ namespace Symfony\Components\Console\Input;
* $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ArrayInput extends Input

View File

@ -21,7 +21,7 @@ namespace Symfony\Components\Console\Input;
* * `ArrayInput`: The input is provided as an array
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class Input implements InputInterface

View File

@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Input;
* Represents a command line argument.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class InputArgument

View File

@ -22,7 +22,7 @@ namespace Symfony\Components\Console\Input;
* ));
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class InputDefinition

View File

@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Input;
* InputInterface is the interface implemented by all input classes.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface InputInterface

View File

@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Input;
* Represents a command line option.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class InputOption

View File

@ -19,7 +19,7 @@ namespace Symfony\Components\Console\Input;
* $input = new StringInput('foo --bar="foobar"');
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class StringInput extends ArgvInput

View File

@ -23,7 +23,7 @@ namespace Symfony\Components\Console\Output;
* $output = new StreamOutput(fopen('php://stdout', 'w'));
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ConsoleOutput extends StreamOutput

View File

@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Output;
* The Formatter class provides helpers to format messages.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Formatter

View File

@ -17,7 +17,7 @@ namespace Symfony\Components\Console\Output;
* $output = new NullOutput();
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class NullOutput extends Output

View File

@ -21,7 +21,7 @@ namespace Symfony\Components\Console\Output;
* * quiet: -q (no output)
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class Output implements OutputInterface

View File

@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Output;
* OutputInterface is the interface implemented by all Output classes.
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface OutputInterface

View File

@ -23,7 +23,7 @@ namespace Symfony\Components\Console\Output;
* $output = new StreamOutput(fopen('/path/to/output.log', 'a', false));
*
* @package symfony
* @subpackage cli
* @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class StreamOutput extends Output