Skip to content

Commit 173f411

Browse files
pborrelitidal
authored andcommitted
Fixed @Package and @subpackage phpdoc tags
1 parent d73865c commit 173f411

File tree

219 files changed

+818
-652
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+818
-652
lines changed

src/Symfony/Components/Console/Application.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Symfony\Components\Console\Helper\DialogHelper;
2020

2121
/*
22-
* This file is part of the symfony framework.
22+
* This file is part of the Symfony framework.
2323
*
2424
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
2525
*
@@ -40,8 +40,8 @@
4040
* $app->addCommand(new SimpleCommand());
4141
* $app->run();
4242
*
43-
* @package symfony
44-
* @subpackage console
43+
* @package Symfony
44+
* @subpackage Components_Console
4545
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
4646
*/
4747
class Application

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symfony\Components\Console\Application;
1111

1212
/*
13-
* This file is part of the symfony framework.
13+
* This file is part of the Symfony framework.
1414
*
1515
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
1616
*
@@ -21,8 +21,8 @@
2121
/**
2222
* Base class for all commands.
2323
*
24-
* @package symfony
25-
* @subpackage console
24+
* @package Symfony
25+
* @subpackage Components_Console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class Command

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symfony\Components\Console\Command\Command;
1111

1212
/*
13-
* This file is part of the symfony framework.
13+
* This file is part of the Symfony framework.
1414
*
1515
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
1616
*
@@ -21,8 +21,8 @@
2121
/**
2222
* HelpCommand displays the help for a given command.
2323
*
24-
* @package symfony
25-
* @subpackage console
24+
* @package Symfony
25+
* @subpackage Components_Console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class HelpCommand extends Command

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symfony\Components\Console\Command\Command;
1111

1212
/*
13-
* This file is part of the symfony framework.
13+
* This file is part of the Symfony framework.
1414
*
1515
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
1616
*
@@ -21,8 +21,8 @@
2121
/**
2222
* ListCommand displays the list of all available commands for the application.
2323
*
24-
* @package symfony
25-
* @subpackage console
24+
* @package Symfony
25+
* @subpackage Components_Console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class ListCommand extends Command

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Symfony\Components\Console\Output\OutputInterface;
66

77
/*
8-
* This file is part of the symfony framework.
8+
* This file is part of the Symfony framework.
99
*
1010
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
1111
*
@@ -16,8 +16,8 @@
1616
/**
1717
* The Dialog class provides helpers to interact with the user.
1818
*
19-
* @package symfony
20-
* @subpackage console
19+
* @package Symfony
20+
* @subpackage Components_Console
2121
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2222
*/
2323
class DialogHelper extends Helper

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Helper;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -14,8 +14,8 @@
1414
/**
1515
* The Formatter class provides helpers to format messages.
1616
*
17-
* @package symfony
18-
* @subpackage console
17+
* @package Symfony
18+
* @subpackage Components_Console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
class FormatterHelper extends Helper

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Helper;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -14,8 +14,8 @@
1414
/**
1515
* Helper is the base class for all helper classes.
1616
*
17-
* @package symfony
18-
* @subpackage console
17+
* @package Symfony
18+
* @subpackage Components_Console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
abstract class Helper implements HelperInterface

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Helper;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -14,8 +14,8 @@
1414
/**
1515
* HelperInterface is the interface all helpers must implement.
1616
*
17-
* @package symfony
18-
* @subpackage console
17+
* @package Symfony
18+
* @subpackage Components_Console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
interface HelperInterface

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Symfony\Components\Console\Command\Command;
66

77
/*
8-
* This file is part of the symfony framework.
8+
* This file is part of the Symfony framework.
99
*
1010
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
1111
*
@@ -16,8 +16,8 @@
1616
/**
1717
* HelperSet represents a set of helpers to be used with a command.
1818
*
19-
* @package symfony
20-
* @subpackage console
19+
* @package Symfony
20+
* @subpackage Components_Console
2121
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2222
*/
2323
class HelperSet

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -20,7 +20,7 @@
2020
*
2121
* By default, the `$_SERVER['argv']` array is used for the input values.
2222
*
23-
* This can be overriden by explicitly passing the input values in the constructor:
23+
* This can be overridden by explicitly passing the input values in the constructor:
2424
*
2525
* $input = new ArgvInput($_SERVER['argv']);
2626
*
@@ -31,8 +31,8 @@
3131
* the same rules as the argv one. It's almost always better to use the
3232
* `StringInput` when you want to provide your own input.
3333
*
34-
* @package symfony
35-
* @subpackage console
34+
* @package Symfony
35+
* @subpackage Components_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
@@ -46,7 +46,7 @@ class ArgvInput extends Input
4646
/**
4747
* Constructor.
4848
*
49-
* @param array $argv An array of parameters from the CLI (in the argv format)
49+
* @param array $argv An array of parameters from the CLI (in the argv format)
5050
* @param InputDefinition $definition A InputDefinition instance
5151
*/
5252
public function __construct(array $argv = null, InputDefinition $definition = null)

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -18,8 +18,8 @@
1818
*
1919
* $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
2020
*
21-
* @package symfony
22-
* @subpackage console
21+
* @package Symfony
22+
* @subpackage Components_Console
2323
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2424
*/
2525
class ArrayInput extends Input
@@ -29,7 +29,7 @@ class ArrayInput extends Input
2929
/**
3030
* Constructor.
3131
*
32-
* @param array $param An array of parameters
32+
* @param array $param An array of parameters
3333
* @param InputDefinition $definition A InputDefinition instance
3434
*/
3535
public function __construct(array $parameters, InputDefinition $definition = null)

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -20,8 +20,8 @@
2020
* * `StringInput`: The input is provided as a string
2121
* * `ArrayInput`: The input is provided as an array
2222
*
23-
* @package symfony
24-
* @subpackage console
23+
* @package Symfony
24+
* @subpackage Components_Console
2525
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2626
*/
2727
abstract class Input implements InputInterface

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -14,8 +14,8 @@
1414
/**
1515
* Represents a command line argument.
1616
*
17-
* @package symfony
18-
* @subpackage console
17+
* @package Symfony
18+
* @subpackage Components_Console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
class InputArgument

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -21,8 +21,8 @@
2121
* new InputOption('foo', 'f', InputOption::PARAMETER_REQUIRED),
2222
* ));
2323
*
24-
* @package symfony
25-
* @subpackage console
24+
* @package Symfony
25+
* @subpackage Components_Console
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
*/
2828
class InputDefinition

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -14,8 +14,8 @@
1414
/**
1515
* InputInterface is the interface implemented by all input classes.
1616
*
17-
* @package symfony
18-
* @subpackage console
17+
* @package Symfony
18+
* @subpackage Components_Console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
interface InputInterface

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -14,8 +14,8 @@
1414
/**
1515
* Represents a command line option.
1616
*
17-
* @package symfony
18-
* @subpackage console
17+
* @package Symfony
18+
* @subpackage Components_Console
1919
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2020
*/
2121
class InputOption

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Input;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -18,8 +18,8 @@
1818
*
1919
* $input = new StringInput('foo --bar="foobar"');
2020
*
21-
* @package symfony
22-
* @subpackage console
21+
* @package Symfony
22+
* @subpackage Components_Console
2323
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2424
*/
2525
class StringInput extends ArgvInput

src/Symfony/Components/Console/Output/ConsoleOutput.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Components\Console\Output;
44

55
/*
6-
* This file is part of the symfony framework.
6+
* This file is part of the Symfony framework.
77
*
88
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
99
*
@@ -22,8 +22,8 @@
2222
*
2323
* $output = new StreamOutput(fopen('php://stdout', 'w'));
2424
*
25-
* @package symfony
26-
* @subpackage console
25+
* @package Symfony
26+
* @subpackage Components_Console
2727
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2828
*/
2929
class ConsoleOutput extends StreamOutput

0 commit comments

Comments
 (0)