[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 f3705edb7e
18 changed files with 18 additions and 18 deletions

View File

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

View File

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

View File

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

View File

@ -32,7 +32,7 @@ namespace Symfony\Components\Console\Input;
* `StringInput` when you want to provide your own input. * `StringInput` when you want to provide your own input.
* *
* @package symfony * @package symfony
* @subpackage cli * @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com> * @author Fabien Potencier <fabien.potencier@symfony-project.com>
* *
* @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html * @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')); * $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
* *
* @package symfony * @package symfony
* @subpackage cli * @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com> * @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/ */
class ArrayInput extends Input class ArrayInput extends Input

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -21,7 +21,7 @@ namespace Symfony\Components\Console\Output;
* * quiet: -q (no output) * * quiet: -q (no output)
* *
* @package symfony * @package symfony
* @subpackage cli * @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com> * @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/ */
abstract class Output implements OutputInterface 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. * OutputInterface is the interface implemented by all Output classes.
* *
* @package symfony * @package symfony
* @subpackage cli * @subpackage console
* @author Fabien Potencier <fabien.potencier@symfony-project.com> * @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/ */
interface OutputInterface interface OutputInterface

View File

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