8000 [Console] changed the subpackage from cli to console · Dahipster/symfony@6092709 · GitHub
[go: up one dir, main page]

8000 Skip to content

Commit 6092709

Browse files
committed
[Console] changed the subpackage from cli to console
2 parents 7a0586e + 111a023 commit 6092709

18 files changed

+18
-18
lines changed

src/Symfony/Components/Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* $app->run();
4242
*
4343
* @package symfony
44-
* @subpackage cli
44+
* @subpackage console
4545
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
4646
*/
4747
class Application

src/Symfony/Components/Console/Command/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Base class for all commands.
2323
*
2424
* @package symfony
25-
* @subpackage cli
25+
* @subpackage console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class Command

src/Symfony/Components/Console/Command/HelpCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* HelpCommand displays the help for a given command.
2323
*
2424
* @package symfony
25-
* @subpackage cli
25+
* @subpackage console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class HelpCommand extends Command

src/Symfony/Components/Console/Command/ListCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* ListCommand displays the list of all available commands for the application.
2323
*
2424
* @package symfony
25-
* @subpackage cli
25+
* @subpackage console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class ListCommand extends Command

src/Symfony/Components/Console/Helper/FormatterHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* The Formatter class provides helpers to format messages.
1616
*
1717
* @package symfony
18-
* @subpackage cli
18+
* @subpackage console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
class FormatterHelper extends Helper

src/Symfony/Components/Console/Input/ArgvInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* `StringInput` when you want to provide your own input.
3333
*
3434
* @package symfony
35-
* @subpackage cli
35+
* @subpackage console
3636
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3737
*
3838
* @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html

src/Symfony/Components/Console/Input/ArrayInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
2020
*
2121
* @package symfony
22-
* @subpackage cli
22+
* @subpackage console
2323
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2424
*/
2525
class ArrayInput extends Input

src/Symfony/Components/Console/Input/Input.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* * `ArrayInput`: The input is provided as an array
2222
*
2323
* @package symfony
24-
* @subpackage cli
24+
* @subpackage console
2525
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2626
*/
2727
abstract class Input implements InputInterface

src/Symfony/Components/Console/Input/InputArgument.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Represents a command line argument.
1616
*
1717
* @package symfony
18-
* @subpackage cli
18+
* @subpackage console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
class InputArgument

src/Symfony/Components/Console/Input/InputDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* ));
2323
*
2424
* @package symfony
25-
* @subpackage cli
25+
* @subpackage console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class InputDefinition

0 commit comments

Comments
 (0)
0