@@ -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
@@ -23,7 +23,7 @@ use Symfony\Components\Console\Application;
* Base class for all commands.
class Command
@@ -22,7 +22,7 @@ use Symfony\Components\Console\Command\Command;
* HelpCommand displays the help for a given command.
class HelpCommand extends Command
* ListCommand displays the list of all available commands for the application.
class ListCommand extends Command
@@ -32,7 +32,7 @@ namespace Symfony\Components\Console\Input;
* `StringInput` when you want to provide your own input.
* @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
@@ -19,7 +19,7 @@ namespace Symfony\Components\Console\Input;
* $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
class ArrayInput extends Input
@@ -21,7 +21,7 @@ namespace Symfony\Components\Console\Input;
* * `ArrayInput`: The input is provided as an array
abstract class Input implements InputInterface
@@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Input;
* Represents a command line argument.
class InputArgument
@@ -22,7 +22,7 @@ namespace Symfony\Components\Console\Input;
* ));
class InputDefinition
* InputInterface is the interface implemented by all input classes.
interface InputInterface
* Represents a command line option.
class InputOption
* $input = new StringInput('foo --bar="foobar"');
class StringInput extends ArgvInput
@@ -23,7 +23,7 @@ namespace Symfony\Components\Console\Output;
* $output = new StreamOutput(fopen('php://stdout', 'w'));
class ConsoleOutput extends StreamOutput
@@ -15,7 +15,7 @@ namespace Symfony\Components\Console\Output;
* The Formatter class provides helpers to format messages.
class Formatter
@@ -17,7 +17,7 @@ namespace Symfony\Components\Console\Output;
* $output = new NullOutput();
class NullOutput extends Output
@@ -21,7 +21,7 @@ namespace Symfony\Components\Console\Output;
* * quiet: -q (no output)
abstract class Output implements OutputInterface
* OutputInterface is the interface implemented by all Output classes.
interface OutputInterface
* $output = new StreamOutput(fopen('/path/to/output.log', 'a', false));
class StreamOutput extends Output