diff --git a/src/Symfony/Components/Console/Application.php b/src/Symfony/Components/Console/Application.php index e9e4a469ea..0c93c814d8 100644 --- a/src/Symfony/Components/Console/Application.php +++ b/src/Symfony/Components/Console/Application.php @@ -19,7 +19,7 @@ use Symfony\Components\Console\Helper\FormatterHelper; use Symfony\Components\Console\Helper\DialogHelper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -40,8 +40,8 @@ use Symfony\Components\Console\Helper\DialogHelper; * $app->addCommand(new SimpleCommand()); * $app->run(); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class Application diff --git a/src/Symfony/Components/Console/Command/Command.php b/src/Symfony/Components/Console/Command/Command.php index 6813f31791..25b2a0091d 100644 --- a/src/Symfony/Components/Console/Command/Command.php +++ b/src/Symfony/Components/Console/Command/Command.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Application; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ use Symfony\Components\Console\Application; /** * Base class for all commands. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class Command diff --git a/src/Symfony/Components/Console/Command/HelpCommand.php b/src/Symfony/Components/Console/Command/HelpCommand.php index 8258c5c182..537de5a84e 100644 --- a/src/Symfony/Components/Console/Command/HelpCommand.php +++ b/src/Symfony/Components/Console/Command/HelpCommand.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Components\Console\Command\Command; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ use Symfony\Components\Console\Command\Command; /** * HelpCommand displays the help for a given command. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class HelpCommand extends Command diff --git a/src/Symfony/Components/Console/Command/ListCommand.php b/src/Symfony/Components/Console/Command/ListCommand.php index 3fddbc224c..6e05b5f04f 100644 --- a/src/Symfony/Components/Console/Command/ListCommand.php +++ b/src/Symfony/Components/Console/Command/ListCommand.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Components\Console\Command\Command; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ use Symfony\Components\Console\Command\Command; /** * ListCommand displays the list of all available commands for the application. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class ListCommand extends Command diff --git a/src/Symfony/Components/Console/Helper/DialogHelper.php b/src/Symfony/Components/Console/Helper/DialogHelper.php index 154143a1a6..31c3d820f6 100644 --- a/src/Symfony/Components/Console/Helper/DialogHelper.php +++ b/src/Symfony/Components/Console/Helper/DialogHelper.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Console\Helper; use Symfony\Components\Console\Output\OutputInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Console\Output\OutputInterface; /** * The Dialog class provides helpers to interact with the user. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class DialogHelper extends Helper diff --git a/src/Symfony/Components/Console/Helper/FormatterHelper.php b/src/Symfony/Components/Console/Helper/FormatterHelper.php index 6eedca733a..2d1c5fb52c 100644 --- a/src/Symfony/Components/Console/Helper/FormatterHelper.php +++ b/src/Symfony/Components/Console/Helper/FormatterHelper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Helper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Helper; /** * The Formatter class provides helpers to format messages. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class FormatterHelper extends Helper diff --git a/src/Symfony/Components/Console/Helper/Helper.php b/src/Symfony/Components/Console/Helper/Helper.php index f083b47abe..0a99683f72 100644 --- a/src/Symfony/Components/Console/Helper/Helper.php +++ b/src/Symfony/Components/Console/Helper/Helper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Helper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Helper; /** * Helper is the base class for all helper classes. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ abstract class Helper implements HelperInterface diff --git a/src/Symfony/Components/Console/Helper/HelperInterface.php b/src/Symfony/Components/Console/Helper/HelperInterface.php index f3de9aa65e..3d220bfea2 100644 --- a/src/Symfony/Components/Console/Helper/HelperInterface.php +++ b/src/Symfony/Components/Console/Helper/HelperInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Helper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Helper; /** * HelperInterface is the interface all helpers must implement. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ interface HelperInterface diff --git a/src/Symfony/Components/Console/Helper/HelperSet.php b/src/Symfony/Components/Console/Helper/HelperSet.php index 67d764f52e..d6b5ca4bcb 100644 --- a/src/Symfony/Components/Console/Helper/HelperSet.php +++ b/src/Symfony/Components/Console/Helper/HelperSet.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Console\Helper; use Symfony\Components\Console\Command\Command; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Console\Command\Command; /** * HelperSet represents a set of helpers to be used with a command. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class HelperSet diff --git a/src/Symfony/Components/Console/Input/ArgvInput.php b/src/Symfony/Components/Console/Input/ArgvInput.php index ec3820c387..0d19942240 100644 --- a/src/Symfony/Components/Console/Input/ArgvInput.php +++ b/src/Symfony/Components/Console/Input/ArgvInput.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,7 +20,7 @@ namespace Symfony\Components\Console\Input; * * By default, the `$_SERVER['argv']` array is used for the input values. * - * This can be overriden by explicitly passing the input values in the constructor: + * This can be overridden by explicitly passing the input values in the constructor: * * $input = new ArgvInput($_SERVER['argv']); * @@ -31,8 +31,8 @@ namespace Symfony\Components\Console\Input; * the same rules as the argv one. It's almost always better to use the * `StringInput` when you want to provide your own input. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier * * @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html @@ -46,7 +46,7 @@ class ArgvInput extends Input /** * Constructor. * - * @param array $argv An array of parameters from the CLI (in the argv format) + * @param array $argv An array of parameters from the CLI (in the argv format) * @param InputDefinition $definition A InputDefinition instance */ public function __construct(array $argv = null, InputDefinition $definition = null) diff --git a/src/Symfony/Components/Console/Input/ArrayInput.php b/src/Symfony/Components/Console/Input/ArrayInput.php index 4f4e624b10..71cdefc36f 100644 --- a/src/Symfony/Components/Console/Input/ArrayInput.php +++ b/src/Symfony/Components/Console/Input/ArrayInput.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ namespace Symfony\Components\Console\Input; * * $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar')); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class ArrayInput extends Input @@ -29,7 +29,7 @@ class ArrayInput extends Input /** * Constructor. * - * @param array $param An array of parameters + * @param array $param An array of parameters * @param InputDefinition $definition A InputDefinition instance */ public function __construct(array $parameters, InputDefinition $definition = null) diff --git a/src/Symfony/Components/Console/Input/Input.php b/src/Symfony/Components/Console/Input/Input.php index 9b5423bc70..a5a4f1ec07 100644 --- a/src/Symfony/Components/Console/Input/Input.php +++ b/src/Symfony/Components/Console/Input/Input.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ namespace Symfony\Components\Console\Input; * * `StringInput`: The input is provided as a string * * `ArrayInput`: The input is provided as an array * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ abstract class Input implements InputInterface diff --git a/src/Symfony/Components/Console/Input/InputArgument.php b/src/Symfony/Components/Console/Input/InputArgument.php index 43bbacf9cd..aada8b6281 100644 --- a/src/Symfony/Components/Console/Input/InputArgument.php +++ b/src/Symfony/Components/Console/Input/InputArgument.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Input; /** * Represents a command line argument. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class InputArgument diff --git a/src/Symfony/Components/Console/Input/InputDefinition.php b/src/Symfony/Components/Console/Input/InputDefinition.php index 1903d04fed..3c3a69123f 100644 --- a/src/Symfony/Components/Console/Input/InputDefinition.php +++ b/src/Symfony/Components/Console/Input/InputDefinition.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ namespace Symfony\Components\Console\Input; * new InputOption('foo', 'f', InputOption::PARAMETER_REQUIRED), * )); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class InputDefinition diff --git a/src/Symfony/Components/Console/Input/InputInterface.php b/src/Symfony/Components/Console/Input/InputInterface.php index 953553e780..8367c9123b 100644 --- a/src/Symfony/Components/Console/Input/InputInterface.php +++ b/src/Symfony/Components/Console/Input/InputInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Input; /** * InputInterface is the interface implemented by all input classes. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ interface InputInterface diff --git a/src/Symfony/Components/Console/Input/InputOption.php b/src/Symfony/Components/Console/Input/InputOption.php index 2937c5810a..a547968d33 100644 --- a/src/Symfony/Components/Console/Input/InputOption.php +++ b/src/Symfony/Components/Console/Input/InputOption.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Input; /** * Represents a command line option. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class InputOption diff --git a/src/Symfony/Components/Console/Input/StringInput.php b/src/Symfony/Components/Console/Input/StringInput.php index c250c687a9..6b3668dedf 100644 --- a/src/Symfony/Components/Console/Input/StringInput.php +++ b/src/Symfony/Components/Console/Input/StringInput.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Input; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ namespace Symfony\Components\Console\Input; * * $input = new StringInput('foo --bar="foobar"'); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class StringInput extends ArgvInput diff --git a/src/Symfony/Components/Console/Output/ConsoleOutput.php b/src/Symfony/Components/Console/Output/ConsoleOutput.php index 7950c25ec0..94c132daa9 100644 --- a/src/Symfony/Components/Console/Output/ConsoleOutput.php +++ b/src/Symfony/Components/Console/Output/ConsoleOutput.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Output; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -22,8 +22,8 @@ namespace Symfony\Components\Console\Output; * * $output = new StreamOutput(fopen('php://stdout', 'w')); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class ConsoleOutput extends StreamOutput diff --git a/src/Symfony/Components/Console/Output/NullOutput.php b/src/Symfony/Components/Console/Output/NullOutput.php index 86e2c326f8..5ef678a24b 100644 --- a/src/Symfony/Components/Console/Output/NullOutput.php +++ b/src/Symfony/Components/Console/Output/NullOutput.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Output; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ namespace Symfony\Components\Console\Output; * * $output = new NullOutput(); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class NullOutput extends Output diff --git a/src/Symfony/Components/Console/Output/Output.php b/src/Symfony/Components/Console/Output/Output.php index ef251393bb..20a39f1c75 100644 --- a/src/Symfony/Components/Console/Output/Output.php +++ b/src/Symfony/Components/Console/Output/Output.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Output; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ namespace Symfony\Components\Console\Output; * * verbose: -v (more output - debug) * * quiet: -q (no output) * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ abstract class Output implements OutputInterface diff --git a/src/Symfony/Components/Console/Output/OutputInterface.php b/src/Symfony/Components/Console/Output/OutputInterface.php index 26bc6b76ef..6e93b78d5c 100644 --- a/src/Symfony/Components/Console/Output/OutputInterface.php +++ b/src/Symfony/Components/Console/Output/OutputInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Output; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Console\Output; /** * OutputInterface is the interface implemented by all Output classes. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ interface OutputInterface diff --git a/src/Symfony/Components/Console/Output/StreamOutput.php b/src/Symfony/Components/Console/Output/StreamOutput.php index 3023012d7a..dfff191073 100644 --- a/src/Symfony/Components/Console/Output/StreamOutput.php +++ b/src/Symfony/Components/Console/Output/StreamOutput.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Console\Output; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -22,8 +22,8 @@ namespace Symfony\Components\Console\Output; * * $output = new StreamOutput(fopen('/path/to/output.log', 'a', false)); * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class StreamOutput extends Output diff --git a/src/Symfony/Components/Console/Shell.php b/src/Symfony/Components/Console/Shell.php index 6e4a08ac88..d62d8db97e 100644 --- a/src/Symfony/Components/Console/Shell.php +++ b/src/Symfony/Components/Console/Shell.php @@ -7,7 +7,7 @@ use Symfony\Components\Console\Input\StringInput; use Symfony\Components\Console\Output\ConsoleOutput; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ use Symfony\Components\Console\Output\ConsoleOutput; * This class only works with a PHP compiled with readline support * (either --with-readline or --with-libedit) * - * @package symfony - * @subpackage cli + * @package Symfony + * @subpackage Components_Console * @author Fabien Potencier */ class Shell diff --git a/src/Symfony/Components/Console/Tester/ApplicationTester.php b/src/Symfony/Components/Console/Tester/ApplicationTester.php index aa31f71cb4..dc8501856f 100644 --- a/src/Symfony/Components/Console/Tester/ApplicationTester.php +++ b/src/Symfony/Components/Console/Tester/ApplicationTester.php @@ -6,6 +6,20 @@ use Symfony\Components\Console\Application; use Symfony\Components\Console\Input\ArrayInput; use Symfony\Components\Console\Output\StreamOutput; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * @package Symfony + * @subpackage Components_Console + * @author Fabien Potencier + */ class ApplicationTester { protected $application; diff --git a/src/Symfony/Components/Console/Tester/CommandTester.php b/src/Symfony/Components/Console/Tester/CommandTester.php index bc0ee8879e..d7a8b813d1 100644 --- a/src/Symfony/Components/Console/Tester/CommandTester.php +++ b/src/Symfony/Components/Console/Tester/CommandTester.php @@ -6,6 +6,20 @@ use Symfony\Components\Console\Command\Command; use Symfony\Components\Console\Input\ArrayInput; use Symfony\Components\Console\Output\StreamOutput; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * @package Symfony + * @subpackage Components_Console + * @author Fabien Potencier + */ class CommandTester { protected $command; diff --git a/src/Symfony/Components/CssSelector/Node/AttribNode.php b/src/Symfony/Components/CssSelector/Node/AttribNode.php index fe7300045c..5b7a8a1b80 100644 --- a/src/Symfony/Components/CssSelector/Node/AttribNode.php +++ b/src/Symfony/Components/CssSelector/Node/AttribNode.php @@ -6,7 +6,7 @@ use Symfony\Components\CssSelector\XPathExpr; use Symfony\Components\CssSelector\SyntaxError; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ use Symfony\Components\CssSelector\SyntaxError; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class AttribNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/ClassNode.php b/src/Symfony/Components/CssSelector/Node/ClassNode.php index 6b00173947..729ee1f223 100644 --- a/src/Symfony/Components/CssSelector/Node/ClassNode.php +++ b/src/Symfony/Components/CssSelector/Node/ClassNode.php @@ -5,7 +5,7 @@ namespace Symfony\Components\CssSelector\Node; use Symfony\Components\CssSelector\XPathExpr; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\CssSelector\XPathExpr; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class ClassNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/CombinedSelectorNode.php b/src/Symfony/Components/CssSelector/Node/CombinedSelectorNode.php index eec316e366..0a5914d52f 100644 --- a/src/Symfony/Components/CssSelector/Node/CombinedSelectorNode.php +++ b/src/Symfony/Components/CssSelector/Node/CombinedSelectorNode.php @@ -5,7 +5,7 @@ namespace Symfony\Components\CssSelector\Node; use Symfony\Components\CssSelector\SyntaxError; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\CssSelector\SyntaxError; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class CombinedSelectorNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/ElementNode.php b/src/Symfony/Components/CssSelector/Node/ElementNode.php index 9425de55a1..ad76ffbac8 100644 --- a/src/Symfony/Components/CssSelector/Node/ElementNode.php +++ b/src/Symfony/Components/CssSelector/Node/ElementNode.php @@ -5,7 +5,7 @@ namespace Symfony\Components\CssSelector\Node; use Symfony\Components\CssSelector\XPathExpr; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\CssSelector\XPathExpr; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class ElementNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/FunctionNode.php b/src/Symfony/Components/CssSelector/Node/FunctionNode.php index 87ae77db8d..ceb78e28ed 100644 --- a/src/Symfony/Components/CssSelector/Node/FunctionNode.php +++ b/src/Symfony/Components/CssSelector/Node/FunctionNode.php @@ -6,7 +6,7 @@ use Symfony\Components\CssSelector\SyntaxError; use Symfony\Components\CssSelector\XPathExpr; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ use Symfony\Components\CssSelector\XPathExpr; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class FunctionNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/HashNode.php b/src/Symfony/Components/CssSelector/Node/HashNode.php index 7a7ae13b9c..207cb2f5c0 100644 --- a/src/Symfony/Components/CssSelector/Node/HashNode.php +++ b/src/Symfony/Components/CssSelector/Node/HashNode.php @@ -5,7 +5,7 @@ namespace Symfony\Components\CssSelector\Node; use Symfony\Components\CssSelector\XPathExpr; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\CssSelector\XPathExpr; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class HashNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/NodeInterface.php b/src/Symfony/Components/CssSelector/Node/NodeInterface.php index aadcb7b320..9f818cd274 100644 --- a/src/Symfony/Components/CssSelector/Node/NodeInterface.php +++ b/src/Symfony/Components/CssSelector/Node/NodeInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector\Node; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ namespace Symfony\Components\CssSelector\Node; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ interface NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/OrNode.php b/src/Symfony/Components/CssSelector/Node/OrNode.php index b64142a02d..fb4026e6ea 100644 --- a/src/Symfony/Components/CssSelector/Node/OrNode.php +++ b/src/Symfony/Components/CssSelector/Node/OrNode.php @@ -5,7 +5,7 @@ namespace Symfony\Components\CssSelector\Node; use Symfony\Components\CssSelector\XPathExprOr; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\CssSelector\XPathExprOr; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class OrNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Node/PseudoNode.php b/src/Symfony/Components/CssSelector/Node/PseudoNode.php index 99867657b3..9b6ed800e4 100644 --- a/src/Symfony/Components/CssSelector/Node/PseudoNode.php +++ b/src/Symfony/Components/CssSelector/Node/PseudoNode.php @@ -5,7 +5,7 @@ namespace Symfony\Components\CssSelector\Node; use Symfony\Components\CssSelector\SyntaxError; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\CssSelector\SyntaxError; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class PseudoNode implements NodeInterface diff --git a/src/Symfony/Components/CssSelector/Parser.php b/src/Symfony/Components/CssSelector/Parser.php index 6812005c5f..933a1f68c5 100644 --- a/src/Symfony/Components/CssSelector/Parser.php +++ b/src/Symfony/Components/CssSelector/Parser.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class Parser diff --git a/src/Symfony/Components/CssSelector/SyntaxError.php b/src/Symfony/Components/CssSelector/SyntaxError.php index 47a3d9334b..3be18b5199 100644 --- a/src/Symfony/Components/CssSelector/SyntaxError.php +++ b/src/Symfony/Components/CssSelector/SyntaxError.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class SyntaxError extends \LogicException diff --git a/src/Symfony/Components/CssSelector/Token.php b/src/Symfony/Components/CssSelector/Token.php index 8102816970..c4489b9e2e 100644 --- a/src/Symfony/Components/CssSelector/Token.php +++ b/src/Symfony/Components/CssSelector/Token.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class Token diff --git a/src/Symfony/Components/CssSelector/TokenStream.php b/src/Symfony/Components/CssSelector/TokenStream.php index e1774dd96e..7f6402e74a 100644 --- a/src/Symfony/Components/CssSelector/TokenStream.php +++ b/src/Symfony/Components/CssSelector/TokenStream.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class TokenStream diff --git a/src/Symfony/Components/CssSelector/Tokenizer.php b/src/Symfony/Components/CssSelector/Tokenizer.php index c83b41cfbd..15acf8a56e 100644 --- a/src/Symfony/Components/CssSelector/Tokenizer.php +++ b/src/Symfony/Components/CssSelector/Tokenizer.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class Tokenizer diff --git a/src/Symfony/Components/CssSelector/XPathExpr.php b/src/Symfony/Components/CssSelector/XPathExpr.php index a8baedee22..c358289d07 100644 --- a/src/Symfony/Components/CssSelector/XPathExpr.php +++ b/src/Symfony/Components/CssSelector/XPathExpr.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class XPathExpr diff --git a/src/Symfony/Components/CssSelector/XPathExprOr.php b/src/Symfony/Components/CssSelector/XPathExprOr.php index 28cf88e8ef..04804dee42 100644 --- a/src/Symfony/Components/CssSelector/XPathExprOr.php +++ b/src/Symfony/Components/CssSelector/XPathExprOr.php @@ -3,7 +3,7 @@ namespace Symfony\Components\CssSelector; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ namespace Symfony\Components\CssSelector; * This component is a port of the Python lxml library, * which is copyright Infrae and distributed under the BSD license. * - * @package symfony - * @subpackage css_selector + * @package Symfony + * @subpackage Components_CssSelector * @author Fabien Potencier */ class XPathExprOr extends XPathExpr diff --git a/src/Symfony/Components/DependencyInjection/AnnotatedContainerInterface.php b/src/Symfony/Components/DependencyInjection/AnnotatedContainerInterface.php index 4946123e7e..147300b820 100644 --- a/src/Symfony/Components/DependencyInjection/AnnotatedContainerInterface.php +++ b/src/Symfony/Components/DependencyInjection/AnnotatedContainerInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * AnnotatedContainerInterface is the interface implemented when a container knows how to deals with annotations. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ interface AnnotatedContainerInterface diff --git a/src/Symfony/Components/DependencyInjection/Builder.php b/src/Symfony/Components/DependencyInjection/Builder.php index 5eddaeea0e..5027552697 100644 --- a/src/Symfony/Components/DependencyInjection/Builder.php +++ b/src/Symfony/Components/DependencyInjection/Builder.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * Builder is a DI container that provides an interface to build the services. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class Builder extends Container implements AnnotatedContainerInterface diff --git a/src/Symfony/Components/DependencyInjection/BuilderConfiguration.php b/src/Symfony/Components/DependencyInjection/BuilderConfiguration.php index 7da14fb9bf..6b11a989c0 100644 --- a/src/Symfony/Components/DependencyInjection/BuilderConfiguration.php +++ b/src/Symfony/Components/DependencyInjection/BuilderConfiguration.php @@ -5,7 +5,7 @@ namespace Symfony\Components\DependencyInjection; use Symfony\Components\DependencyInjection\Loader\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\DependencyInjection\Loader\Loader; /** * A BuilderConfiguration is a consistent set of definitions and parameters. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class BuilderConfiguration diff --git a/src/Symfony/Components/DependencyInjection/Container.php b/src/Symfony/Components/DependencyInjection/Container.php index 7840ba04cb..e403657353 100644 --- a/src/Symfony/Components/DependencyInjection/Container.php +++ b/src/Symfony/Components/DependencyInjection/Container.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -46,8 +46,8 @@ namespace Symfony\Components\DependencyInjection; * * IGNORE_ON_INVALID_REFERENCE: Ignores the wrapping command asking for the reference * (for instance, ignore a setter if the service does not exist) * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class Container implements ContainerInterface, \ArrayAccess diff --git a/src/Symfony/Components/DependencyInjection/ContainerInterface.php b/src/Symfony/Components/DependencyInjection/ContainerInterface.php index 5fce378cf8..149a0cacf4 100644 --- a/src/Symfony/Components/DependencyInjection/ContainerInterface.php +++ b/src/Symfony/Components/DependencyInjection/ContainerInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * ContainerInterface is the interface implemented by service container classes. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ interface ContainerInterface diff --git a/src/Symfony/Components/DependencyInjection/Definition.php b/src/Symfony/Components/DependencyInjection/Definition.php index f624203478..6f2911dda8 100644 --- a/src/Symfony/Components/DependencyInjection/Definition.php +++ b/src/Symfony/Components/DependencyInjection/Definition.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * Definition represents a service definition. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class Definition diff --git a/src/Symfony/Components/DependencyInjection/Dumper/Dumper.php b/src/Symfony/Components/DependencyInjection/Dumper/Dumper.php index d32af85397..65212d51f5 100644 --- a/src/Symfony/Components/DependencyInjection/Dumper/Dumper.php +++ b/src/Symfony/Components/DependencyInjection/Dumper/Dumper.php @@ -5,7 +5,7 @@ namespace Symfony\Components\DependencyInjection\Dumper; use Symfony\Components\DependencyInjection\Builder; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\DependencyInjection\Builder; /** * Dumper is the abstract class for all built-in dumpers. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ abstract class Dumper implements DumperInterface diff --git a/src/Symfony/Components/DependencyInjection/Dumper/DumperInterface.php b/src/Symfony/Components/DependencyInjection/Dumper/DumperInterface.php index 964a605242..f1ac040e64 100644 --- a/src/Symfony/Components/DependencyInjection/Dumper/DumperInterface.php +++ b/src/Symfony/Components/DependencyInjection/Dumper/DumperInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection\Dumper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection\Dumper; /** * DumperInterface is the interface implemented by service container dumper classes. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ interface DumperInterface diff --git a/src/Symfony/Components/DependencyInjection/Dumper/GraphvizDumper.php b/src/Symfony/Components/DependencyInjection/Dumper/GraphvizDumper.php index 37db58750e..1edea7f04d 100644 --- a/src/Symfony/Components/DependencyInjection/Dumper/GraphvizDumper.php +++ b/src/Symfony/Components/DependencyInjection/Dumper/GraphvizDumper.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\Parameter; use Symfony\Components\DependencyInjection\Builder; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Symfony\Components\DependencyInjection\Builder; * * dot -Tpng container.dot > foo.png * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class GraphvizDumper extends Dumper diff --git a/src/Symfony/Components/DependencyInjection/Dumper/PhpDumper.php b/src/Symfony/Components/DependencyInjection/Dumper/PhpDumper.php index 5202c5f261..14c80e942d 100644 --- a/src/Symfony/Components/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Components/DependencyInjection/Dumper/PhpDumper.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\Reference; use Symfony\Components\DependencyInjection\Parameter; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\DependencyInjection\Parameter; /** * PhpDumper dumps a service container as a PHP class. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class PhpDumper extends Dumper diff --git a/src/Symfony/Components/DependencyInjection/Dumper/XmlDumper.php b/src/Symfony/Components/DependencyInjection/Dumper/XmlDumper.php index 74db69c7c9..0c0e975b64 100644 --- a/src/Symfony/Components/DependencyInjection/Dumper/XmlDumper.php +++ b/src/Symfony/Components/DependencyInjection/Dumper/XmlDumper.php @@ -7,7 +7,7 @@ use Symfony\Components\DependencyInjection\Parameter; use Symfony\Components\DependencyInjection\Reference; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ use Symfony\Components\DependencyInjection\Reference; /** * XmlDumper dumps a service container as an XML string. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class XmlDumper extends Dumper diff --git a/src/Symfony/Components/DependencyInjection/Dumper/YamlDumper.php b/src/Symfony/Components/DependencyInjection/Dumper/YamlDumper.php index c614dad630..136784ad54 100644 --- a/src/Symfony/Components/DependencyInjection/Dumper/YamlDumper.php +++ b/src/Symfony/Components/DependencyInjection/Dumper/YamlDumper.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\Parameter; use Symfony\Components\DependencyInjection\Reference; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\DependencyInjection\Reference; /** * YamlDumper dumps a service container as a YAML string. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class YamlDumper extends Dumper diff --git a/src/Symfony/Components/DependencyInjection/FileResource.php b/src/Symfony/Components/DependencyInjection/FileResource.php index 24e1e0d5ff..bf1c578787 100644 --- a/src/Symfony/Components/DependencyInjection/FileResource.php +++ b/src/Symfony/Components/DependencyInjection/FileResource.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * FileResource represents a resource stored on the filesystem. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class FileResource implements ResourceInterface diff --git a/src/Symfony/Components/DependencyInjection/Loader/FileLoader.php b/src/Symfony/Components/DependencyInjection/Loader/FileLoader.php index 25e52f8e44..60b66d10f5 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/FileLoader.php +++ b/src/Symfony/Components/DependencyInjection/Loader/FileLoader.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection\Loader; /** * FileLoader is the abstract class used by all built-in loaders that are file based. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ abstract class FileLoader extends Loader diff --git a/src/Symfony/Components/DependencyInjection/Loader/IniFileLoader.php b/src/Symfony/Components/DependencyInjection/Loader/IniFileLoader.php index 35878fd0a4..1c69fdce10 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/IniFileLoader.php +++ b/src/Symfony/Components/DependencyInjection/Loader/IniFileLoader.php @@ -6,7 +6,7 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; use Symfony\Components\DependencyInjection\FileResource; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\DependencyInjection\FileResource; /** * IniFileLoader loads parameters from INI files. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class IniFileLoader extends FileLoader diff --git a/src/Symfony/Components/DependencyInjection/Loader/Loader.php b/src/Symfony/Components/DependencyInjection/Loader/Loader.php index aff4c24efc..97f30719c6 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/Loader.php +++ b/src/Symfony/Components/DependencyInjection/Loader/Loader.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection\Loader; /** * Loader is the abstract class used by all built-in loaders. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ abstract class Loader implements LoaderInterface diff --git a/src/Symfony/Components/DependencyInjection/Loader/LoaderExtension.php b/src/Symfony/Components/DependencyInjection/Loader/LoaderExtension.php index 2edc2c0994..1a2b1ce94c 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/LoaderExtension.php +++ b/src/Symfony/Components/DependencyInjection/Loader/LoaderExtension.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection\Loader; /** * LoaderExtension is a helper class that helps organize extensions better. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ abstract class LoaderExtension implements LoaderExtensionInterface diff --git a/src/Symfony/Components/DependencyInjection/Loader/LoaderExtensionInterface.php b/src/Symfony/Components/DependencyInjection/Loader/LoaderExtensionInterface.php index aee78181a5..98b62c1324 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/LoaderExtensionInterface.php +++ b/src/Symfony/Components/DependencyInjection/Loader/LoaderExtensionInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection\Loader; /** * LoaderExtensionInterface is the interface implemented by loader extension classes. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ interface LoaderExtensionInterface diff --git a/src/Symfony/Components/DependencyInjection/Loader/LoaderInterface.php b/src/Symfony/Components/DependencyInjection/Loader/LoaderInterface.php index e55e7a6d6b..85dce17915 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/LoaderInterface.php +++ b/src/Symfony/Components/DependencyInjection/Loader/LoaderInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ namespace Symfony\Components\DependencyInjection\Loader; * $container = new Builder(); * $container->merge($config); * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ interface LoaderInterface diff --git a/src/Symfony/Components/DependencyInjection/Loader/XmlFileLoader.php b/src/Symfony/Components/DependencyInjection/Loader/XmlFileLoader.php index 5bb3feee9b..69fef75f8c 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/XmlFileLoader.php +++ b/src/Symfony/Components/DependencyInjection/Loader/XmlFileLoader.php @@ -9,7 +9,7 @@ use Symfony\Components\DependencyInjection\SimpleXMLElement; use Symfony\Components\DependencyInjection\FileResource; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ use Symfony\Components\DependencyInjection\FileResource; /** * XmlFileLoader loads XML files service definitions. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class XmlFileLoader extends FileLoader diff --git a/src/Symfony/Components/DependencyInjection/Loader/YamlFileLoader.php b/src/Symfony/Components/DependencyInjection/Loader/YamlFileLoader.php index c1d893850d..3c3cf80cfd 100644 --- a/src/Symfony/Components/DependencyInjection/Loader/YamlFileLoader.php +++ b/src/Symfony/Components/DependencyInjection/Loader/YamlFileLoader.php @@ -10,7 +10,7 @@ use Symfony\Components\DependencyInjection\FileResource; use Symfony\Components\Yaml\Yaml; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Symfony\Components\Yaml\Yaml; * * The YAML format does not support anonymous services (cf. the XML loader). * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class YamlFileLoader extends FileLoader diff --git a/src/Symfony/Components/DependencyInjection/Parameter.php b/src/Symfony/Components/DependencyInjection/Parameter.php index 1e33454c9a..0556d38003 100644 --- a/src/Symfony/Components/DependencyInjection/Parameter.php +++ b/src/Symfony/Components/DependencyInjection/Parameter.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * Parameter represents a parameter reference. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class Parameter diff --git a/src/Symfony/Components/DependencyInjection/Reference.php b/src/Symfony/Components/DependencyInjection/Reference.php index 099c91ebb4..414c638967 100644 --- a/src/Symfony/Components/DependencyInjection/Reference.php +++ b/src/Symfony/Components/DependencyInjection/Reference.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * Reference represents a service reference. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ class Reference diff --git a/src/Symfony/Components/DependencyInjection/ResourceInterface.php b/src/Symfony/Components/DependencyInjection/ResourceInterface.php index fc940164d8..64f359b6b2 100644 --- a/src/Symfony/Components/DependencyInjection/ResourceInterface.php +++ b/src/Symfony/Components/DependencyInjection/ResourceInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\DependencyInjection; /** * ResourceInterface is the interface that must be implemented by all Resource classes. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Components_DependencyInjection * @author Fabien Potencier */ interface ResourceInterface diff --git a/src/Symfony/Components/DependencyInjection/SimpleXMLElement.php b/src/Symfony/Components/DependencyInjection/SimpleXMLElement.php index 41700111e4..66d02a12c4 100644 --- a/src/Symfony/Components/DependencyInjection/SimpleXMLElement.php +++ b/src/Symfony/Components/DependencyInjection/SimpleXMLElement.php @@ -3,7 +3,7 @@ namespace Symfony\Components\DependencyInjection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -11,6 +11,13 @@ namespace Symfony\Components\DependencyInjection; * with this source code in the file LICENSE. */ +/** + * SimpleXMLElement class. + * + * @package Symfony + * @subpackage Components_DependencyInjection + * @author Fabien Potencier + */ class SimpleXMLElement extends \SimpleXMLElement { public function getAttributeAsPhp($name) diff --git a/src/Symfony/Components/EventDispatcher/Event.php b/src/Symfony/Components/EventDispatcher/Event.php index f9d5070223..1e3e909fc0 100644 --- a/src/Symfony/Components/EventDispatcher/Event.php +++ b/src/Symfony/Components/EventDispatcher/Event.php @@ -3,7 +3,7 @@ namespace Symfony\Components\EventDispatcher; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE @@ -13,8 +13,8 @@ namespace Symfony\Components\EventDispatcher; /** * Event. * - * @package symfony - * @subpackage event_dispatcher + * @package Symfony + * @subpackage Components_EventDispatcher * @author Fabien Potencier */ class Event implements \ArrayAccess diff --git a/src/Symfony/Components/EventDispatcher/EventDispatcher.php b/src/Symfony/Components/EventDispatcher/EventDispatcher.php index 604516c87e..89083934f3 100644 --- a/src/Symfony/Components/EventDispatcher/EventDispatcher.php +++ b/src/Symfony/Components/EventDispatcher/EventDispatcher.php @@ -3,7 +3,7 @@ namespace Symfony\Components\EventDispatcher; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE @@ -15,8 +15,8 @@ namespace Symfony\Components\EventDispatcher; * * @see http://developer.apple.com/documentation/Cocoa/Conceptual/Notifications/index.html Apple's Cocoa framework * - * @package symfony - * @subpackage event_dispatcher + * @package Symfony + * @subpackage Components_EventDispatcher * @author Fabien Potencier */ class EventDispatcher diff --git a/src/Symfony/Components/OutputEscaper/ArrayDecorator.php b/src/Symfony/Components/OutputEscaper/ArrayDecorator.php index 505aef8519..ecf5f2a452 100644 --- a/src/Symfony/Components/OutputEscaper/ArrayDecorator.php +++ b/src/Symfony/Components/OutputEscaper/ArrayDecorator.php @@ -3,7 +3,7 @@ namespace Symfony\Components\OutputEscaper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -15,8 +15,8 @@ namespace Symfony\Components\OutputEscaper; * Output escaping decorator class for arrays. * * @see Escaper - * @package symfony - * @subpackage output_escaper + * @package Symfony + * @subpackage Components_OutputEscaper * @author Fabien Potencier * @author Mike Squire */ diff --git a/src/Symfony/Components/OutputEscaper/Escaper.php b/src/Symfony/Components/OutputEscaper/Escaper.php index 2d3011081b..3cec532cfd 100644 --- a/src/Symfony/Components/OutputEscaper/Escaper.php +++ b/src/Symfony/Components/OutputEscaper/Escaper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\OutputEscaper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\OutputEscaper; /** * Abstract class that provides an interface for escaping of output. * - * @package symfony - * @subpackage output_escaper + * @package Symfony + * @subpackage Components_OutputEscaper * @author Fabien Potencier * @author Mike Squire */ diff --git a/src/Symfony/Components/OutputEscaper/GetterDecorator.php b/src/Symfony/Components/OutputEscaper/GetterDecorator.php index 1cfc175fff..48f48ece66 100644 --- a/src/Symfony/Components/OutputEscaper/GetterDecorator.php +++ b/src/Symfony/Components/OutputEscaper/GetterDecorator.php @@ -3,7 +3,7 @@ namespace Symfony\Components\OutputEscaper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -15,8 +15,8 @@ namespace Symfony\Components\OutputEscaper; * Abstract output escaping decorator class for "getter" objects. * * @see Escaper - * @package symfony - * @subpackage output_escaper + * @package Symfony + * @subpackage Components_OutputEscaper * @author Fabien Potencier * @author Mike Squire */ @@ -25,7 +25,7 @@ abstract class GetterDecorator extends Escaper /** * Returns the raw, unescaped value associated with the key supplied. * - * The key might be an index into an array or a value to be passed to the + * The key might be an index into an array or a value to be passed to the * decorated object's get() method. * * @param string $key The key to retrieve diff --git a/src/Symfony/Components/OutputEscaper/IteratorDecorator.php b/src/Symfony/Components/OutputEscaper/IteratorDecorator.php index ca00795b45..d367e69631 100644 --- a/src/Symfony/Components/OutputEscaper/IteratorDecorator.php +++ b/src/Symfony/Components/OutputEscaper/IteratorDecorator.php @@ -3,7 +3,7 @@ namespace Symfony\Components\OutputEscaper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ namespace Symfony\Components\OutputEscaper; * into an iterator with each value escaped. * * @see Escaper - * @package symfony - * @subpackage output_escaper + * @package Symfony + * @subpackage Components_OutputEscaper * @author Fabien Potencier * @author Mike Squire */ diff --git a/src/Symfony/Components/OutputEscaper/ObjectDecorator.php b/src/Symfony/Components/OutputEscaper/ObjectDecorator.php index 77e49369b8..0dd1d96754 100644 --- a/src/Symfony/Components/OutputEscaper/ObjectDecorator.php +++ b/src/Symfony/Components/OutputEscaper/ObjectDecorator.php @@ -3,7 +3,7 @@ namespace Symfony\Components\OutputEscaper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ namespace Symfony\Components\OutputEscaper; * their return values. * * @see Escaper - * @package symfony - * @subpackage output_escaper + * @package Symfony + * @subpackage Components_OutputEscaper * @author Fabien Potencier * @author Mike Squire */ diff --git a/src/Symfony/Components/OutputEscaper/SafeDecorator.php b/src/Symfony/Components/OutputEscaper/SafeDecorator.php index 75ac82d6e2..f2525ba582 100644 --- a/src/Symfony/Components/OutputEscaper/SafeDecorator.php +++ b/src/Symfony/Components/OutputEscaper/SafeDecorator.php @@ -3,7 +3,7 @@ namespace Symfony\Components\OutputEscaper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\OutputEscaper; /** * Marks a variable as being safe for output. * - * @package symfony - * @subpackage output_escaper + * @package Symfony + * @subpackage Components_OutputEscaper * @author Fabien Potencier */ class SafeDecorator extends \ArrayIterator diff --git a/src/Symfony/Components/RequestHandler/Exception/ForbiddenHttpException.php b/src/Symfony/Components/RequestHandler/Exception/ForbiddenHttpException.php index 96a1ff057a..cabf2ccf72 100644 --- a/src/Symfony/Components/RequestHandler/Exception/ForbiddenHttpException.php +++ b/src/Symfony/Components/RequestHandler/Exception/ForbiddenHttpException.php @@ -2,6 +2,22 @@ namespace Symfony\Components\RequestHandler\Exception; +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * ForbiddenHttpException. + * + * @package Symfony + * @subpackage Components_RequestHandler + * @author Fabien Potencier + */ class ForbiddenHttpException extends HttpException { public function __construct($message = '') diff --git a/src/Symfony/Components/RequestHandler/Exception/HttpException.php b/src/Symfony/Components/RequestHandler/Exception/HttpException.php index 077563e464..6622d295f1 100644 --- a/src/Symfony/Components/RequestHandler/Exception/HttpException.php +++ b/src/Symfony/Components/RequestHandler/Exception/HttpException.php @@ -2,7 +2,24 @@ namespace Symfony\Components\RequestHandler\Exception; -// by convention, exception code == response status code +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * HttpException. + * + * By convention, exception code == response status code. + * + * @package Symfony + * @subpackage Components_RequestHandler + * @author Fabien Potencier + */ class HttpException extends \Exception { } diff --git a/src/Symfony/Components/RequestHandler/Exception/NotFoundHttpException.php b/src/Symfony/Components/RequestHandler/Exception/NotFoundHttpException.php index 47f94bce1a..1a917ec593 100644 --- a/src/Symfony/Components/RequestHandler/Exception/NotFoundHttpException.php +++ b/src/Symfony/Components/RequestHandler/Exception/NotFoundHttpException.php @@ -2,6 +2,22 @@ namespace Symfony\Components\RequestHandler\Exception; +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * NotFoundHttpException. + * + * @package Symfony + * @subpackage Components_RequestHandler + * @author Fabien Potencier + */ class NotFoundHttpException extends HttpException { public function __construct($message = '') diff --git a/src/Symfony/Components/RequestHandler/Exception/UnauthorizedHttpException.php b/src/Symfony/Components/RequestHandler/Exception/UnauthorizedHttpException.php index c4b30efdbc..1bca81d022 100644 --- a/src/Symfony/Components/RequestHandler/Exception/UnauthorizedHttpException.php +++ b/src/Symfony/Components/RequestHandler/Exception/UnauthorizedHttpException.php @@ -2,6 +2,22 @@ namespace Symfony\Components\RequestHandler\Exception; +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * UnauthorizedHttpException. + * + * @package Symfony + * @subpackage Components_RequestHandler + * @author Fabien Potencier + */ class UnauthorizedHttpException extends HttpException { public function __construct($message = '') diff --git a/src/Symfony/Components/RequestHandler/Request.php b/src/Symfony/Components/RequestHandler/Request.php index d473f9d84f..d3b6fa0699 100644 --- a/src/Symfony/Components/RequestHandler/Request.php +++ b/src/Symfony/Components/RequestHandler/Request.php @@ -3,7 +3,7 @@ namespace Symfony\Components\RequestHandler; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ namespace Symfony\Components\RequestHandler; * * You can reinitialize the request by calling the setParameters() method. * - * @package symfony - * @subpackage request_handler + * @package Symfony + * @subpackage Components_RequestHandler * @author Fabien Potencier */ class Request implements RequestInterface diff --git a/src/Symfony/Components/RequestHandler/RequestHandler.php b/src/Symfony/Components/RequestHandler/RequestHandler.php index 434af5bb24..3f917bb801 100644 --- a/src/Symfony/Components/RequestHandler/RequestHandler.php +++ b/src/Symfony/Components/RequestHandler/RequestHandler.php @@ -7,7 +7,7 @@ use Symfony\Components\EventDispatcher\EventDispatcher; use Symfony\Components\RequestHandler\Exception\NotFoundHttpException; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ use Symfony\Components\RequestHandler\Exception\NotFoundHttpException; /** * RequestHandler notifies events to convert a Request object to a Response one. * - * @package symfony - * @subpackage request_handler + * @package Symfony + * @subpackage Components_RequestHandler * @author Fabien Potencier */ class RequestHandler diff --git a/src/Symfony/Components/RequestHandler/RequestInterface.php b/src/Symfony/Components/RequestHandler/RequestInterface.php index 0a1b69edbb..6e445d2031 100644 --- a/src/Symfony/Components/RequestHandler/RequestInterface.php +++ b/src/Symfony/Components/RequestHandler/RequestInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\RequestHandler; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\RequestHandler; /** * RequestInterface is the interface that all client request classes must implement. * - * @package symfony - * @subpackage request_handler + * @package Symfony + * @subpackage Components_RequestHandler * @author Fabien Potencier */ interface RequestInterface diff --git a/src/Symfony/Components/RequestHandler/Response.php b/src/Symfony/Components/RequestHandler/Response.php index ff6b9ef594..2e50f1938f 100644 --- a/src/Symfony/Components/RequestHandler/Response.php +++ b/src/Symfony/Components/RequestHandler/Response.php @@ -3,7 +3,7 @@ namespace Symfony\Components\RequestHandler; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\RequestHandler; /** * Response is the base implementation of a server response. * - * @package symfony - * @subpackage request_handler + * @package Symfony + * @subpackage Components_RequestHandler * @author Fabien Potencier */ class Response implements ResponseInterface diff --git a/src/Symfony/Components/RequestHandler/ResponseInterface.php b/src/Symfony/Components/RequestHandler/ResponseInterface.php index d0ffd64d8c..0fa110dffc 100644 --- a/src/Symfony/Components/RequestHandler/ResponseInterface.php +++ b/src/Symfony/Components/RequestHandler/ResponseInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\RequestHandler; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\RequestHandler; /** * ResponseInterface is the interface that all server response classes must implement. * - * @package symfony - * @subpackage request_handler + * @package Symfony + * @subpackage Components_RequestHandler * @author Fabien Potencier */ interface ResponseInterface diff --git a/src/Symfony/Components/Routing/CompiledRoute.php b/src/Symfony/Components/Routing/CompiledRoute.php index 1e2b287f19..5884c16f44 100644 --- a/src/Symfony/Components/Routing/CompiledRoute.php +++ b/src/Symfony/Components/Routing/CompiledRoute.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * CompiledRoutes are returned by the RouteCompiler class. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class CompiledRoute diff --git a/src/Symfony/Components/Routing/FileResource.php b/src/Symfony/Components/Routing/FileResource.php index e01eb2f581..80523f2ffe 100644 --- a/src/Symfony/Components/Routing/FileResource.php +++ b/src/Symfony/Components/Routing/FileResource.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * FileResource represents a resource stored on the filesystem. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class FileResource implements ResourceInterface diff --git a/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumper.php b/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumper.php index e6d5d65f79..c09f767bb2 100644 --- a/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumper.php +++ b/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumper.php @@ -6,7 +6,7 @@ use Symfony\Components\Routing\RouteCollection; use Symfony\Components\Routing\Route; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Routing\Route; /** * GeneratorDumper is the base class for all built-in generator dumpers. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ abstract class GeneratorDumper implements GeneratorDumperInterface diff --git a/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumperInterface.php b/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumperInterface.php index 3a6d1503cb..3960fee4c4 100644 --- a/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumperInterface.php +++ b/src/Symfony/Components/Routing/Generator/Dumper/GeneratorDumperInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing\Generator\Dumper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing\Generator\Dumper; /** * GeneratorDumperInterface is the interface that all generator dumper classes must implement. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface GeneratorDumperInterface diff --git a/src/Symfony/Components/Routing/Generator/Dumper/PhpGeneratorDumper.php b/src/Symfony/Components/Routing/Generator/Dumper/PhpGeneratorDumper.php index e901f2f0cc..15a9a963d6 100644 --- a/src/Symfony/Components/Routing/Generator/Dumper/PhpGeneratorDumper.php +++ b/src/Symfony/Components/Routing/Generator/Dumper/PhpGeneratorDumper.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Routing\Generator\Dumper; use Symfony\Components\Routing\Route; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Routing\Route; /** * PhpGeneratorDumper creates a PHP class able to generate URLs for a given set of routes. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class PhpGeneratorDumper extends GeneratorDumper diff --git a/src/Symfony/Components/Routing/Generator/UrlGenerator.php b/src/Symfony/Components/Routing/Generator/UrlGenerator.php index 75e154d726..54169dc997 100644 --- a/src/Symfony/Components/Routing/Generator/UrlGenerator.php +++ b/src/Symfony/Components/Routing/Generator/UrlGenerator.php @@ -6,7 +6,7 @@ use Symfony\Components\Routing\Route; use Symfony\Components\Routing\RouteCollection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Routing\RouteCollection; /** * UrlGenerator generates URL based on a set of routes. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class UrlGenerator implements UrlGeneratorInterface diff --git a/src/Symfony/Components/Routing/Generator/UrlGeneratorInterface.php b/src/Symfony/Components/Routing/Generator/UrlGeneratorInterface.php index 60b4a5c00e..a2af32ba8c 100644 --- a/src/Symfony/Components/Routing/Generator/UrlGeneratorInterface.php +++ b/src/Symfony/Components/Routing/Generator/UrlGeneratorInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing\Generator; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing\Generator; /** * UrlGeneratorInterface is the interface that all URL generator classes must implements. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface UrlGeneratorInterface diff --git a/src/Symfony/Components/Routing/Loader/FileLoader.php b/src/Symfony/Components/Routing/Loader/FileLoader.php index 074754e359..7384cb4d1e 100644 --- a/src/Symfony/Components/Routing/Loader/FileLoader.php +++ b/src/Symfony/Components/Routing/Loader/FileLoader.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing\Loader; /** * FileLoader is the abstract class used by all built-in loaders that are file based. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ abstract class FileLoader implements LoaderInterface diff --git a/src/Symfony/Components/Routing/Loader/LoaderInterface.php b/src/Symfony/Components/Routing/Loader/LoaderInterface.php index a9cc6575dd..bd467fcdda 100644 --- a/src/Symfony/Components/Routing/Loader/LoaderInterface.php +++ b/src/Symfony/Components/Routing/Loader/LoaderInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing\Loader; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing\Loader; /** * LoaderInterface is the interface that all loaders classes must implement. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface LoaderInterface diff --git a/src/Symfony/Components/Routing/Loader/XmlFileLoader.php b/src/Symfony/Components/Routing/Loader/XmlFileLoader.php index 17247f7b07..31c92ba692 100644 --- a/src/Symfony/Components/Routing/Loader/XmlFileLoader.php +++ b/src/Symfony/Components/Routing/Loader/XmlFileLoader.php @@ -7,7 +7,7 @@ use Symfony\Components\Routing\Route; use Symfony\Components\Routing\FileResource; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ use Symfony\Components\Routing\FileResource; /** * XmlFileLoader loads XML routing files. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class XmlFileLoader extends FileLoader diff --git a/src/Symfony/Components/Routing/Loader/YamlFileLoader.php b/src/Symfony/Components/Routing/Loader/YamlFileLoader.php index c97f7a1b59..5f10479923 100644 --- a/src/Symfony/Components/Routing/Loader/YamlFileLoader.php +++ b/src/Symfony/Components/Routing/Loader/YamlFileLoader.php @@ -8,7 +8,7 @@ use Symfony\Components\Routing\FileResource; use Symfony\Components\Yaml\Yaml; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\Yaml\Yaml; /** * YamlFileLoader loads Yaml routing files. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class YamlFileLoader extends FileLoader diff --git a/src/Symfony/Components/Routing/Matcher/ApacheUrlMatcher.php b/src/Symfony/Components/Routing/Matcher/ApacheUrlMatcher.php index cac89a3fd6..719b2d382f 100644 --- a/src/Symfony/Components/Routing/Matcher/ApacheUrlMatcher.php +++ b/src/Symfony/Components/Routing/Matcher/ApacheUrlMatcher.php @@ -6,7 +6,7 @@ use Symfony\Components\Routing\Route; use Symfony\Components\Routing\RouteCollection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Routing\RouteCollection; /** * ApacheUrlMatcher matches URL based on Apache mod_rewrite matching (see ApacheMatcherDumper). * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class ApacheUrlMatcher extends UrlMatcher diff --git a/src/Symfony/Components/Routing/Matcher/Dumper/ApacheMatcherDumper.php b/src/Symfony/Components/Routing/Matcher/Dumper/ApacheMatcherDumper.php index ef0cc9bf1c..450d2352f8 100644 --- a/src/Symfony/Components/Routing/Matcher/Dumper/ApacheMatcherDumper.php +++ b/src/Symfony/Components/Routing/Matcher/Dumper/ApacheMatcherDumper.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Routing\Matcher\Dumper; use Symfony\Components\Routing\Route; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Routing\Route; /** * ApacheMatcherDumper dumps a matcher in the Apache .htaccess format. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class ApacheMatcherDumper extends MatcherDumper diff --git a/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumper.php b/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumper.php index 12e72ac0f5..2e57e2964b 100644 --- a/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumper.php +++ b/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumper.php @@ -6,7 +6,7 @@ use Symfony\Components\Routing\RouteCollection; use Symfony\Components\Routing\Route; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Routing\Route; /** * MatcherDumper is the abstract class for all built-in matcher dumpers. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ abstract class MatcherDumper implements MatcherDumperInterface diff --git a/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumperInterface.php b/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumperInterface.php index 8e8022af41..6d7cf59710 100644 --- a/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumperInterface.php +++ b/src/Symfony/Components/Routing/Matcher/Dumper/MatcherDumperInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing\Matcher\Dumper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing\Matcher\Dumper; /** * MatcherDumperInterface is the interface that all matcher dumper classes must implement. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface MatcherDumperInterface diff --git a/src/Symfony/Components/Routing/Matcher/Dumper/PhpMatcherDumper.php b/src/Symfony/Components/Routing/Matcher/Dumper/PhpMatcherDumper.php index dad60fea89..682956304e 100644 --- a/src/Symfony/Components/Routing/Matcher/Dumper/PhpMatcherDumper.php +++ b/src/Symfony/Components/Routing/Matcher/Dumper/PhpMatcherDumper.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Routing\Matcher\Dumper; use Symfony\Components\Routing\Route; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Routing\Route; /** * PhpMatcherDumper creates a PHP class able to match URLs for a given set of routes. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class PhpMatcherDumper extends MatcherDumper diff --git a/src/Symfony/Components/Routing/Matcher/UrlMatcher.php b/src/Symfony/Components/Routing/Matcher/UrlMatcher.php index 27f6d07434..ef1a31375e 100644 --- a/src/Symfony/Components/Routing/Matcher/UrlMatcher.php +++ b/src/Symfony/Components/Routing/Matcher/UrlMatcher.php @@ -6,7 +6,7 @@ use Symfony\Components\Routing\Route; use Symfony\Components\Routing\RouteCollection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Routing\RouteCollection; /** * UrlMatcher matches URL based on a set of routes. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class UrlMatcher implements UrlMatcherInterface diff --git a/src/Symfony/Components/Routing/Matcher/UrlMatcherInterface.php b/src/Symfony/Components/Routing/Matcher/UrlMatcherInterface.php index 4386e38d82..f4f4009e0d 100644 --- a/src/Symfony/Components/Routing/Matcher/UrlMatcherInterface.php +++ b/src/Symfony/Components/Routing/Matcher/UrlMatcherInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing\Matcher; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing\Matcher; /** * UrlMatcherInterface is the interface that all URL matcher classes must implements. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface UrlMatcherInterface diff --git a/src/Symfony/Components/Routing/ResourceInterface.php b/src/Symfony/Components/Routing/ResourceInterface.php index 19f718e981..c524b4e3bf 100644 --- a/src/Symfony/Components/Routing/ResourceInterface.php +++ b/src/Symfony/Components/Routing/ResourceInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * ResourceInterface is the interface that must be implemented by all Resource classes. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface ResourceInterface diff --git a/src/Symfony/Components/Routing/Route.php b/src/Symfony/Components/Routing/Route.php index 2d2c25d4bf..322688c702 100644 --- a/src/Symfony/Components/Routing/Route.php +++ b/src/Symfony/Components/Routing/Route.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * A Route describes a route and its parameters. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class Route diff --git a/src/Symfony/Components/Routing/RouteCollection.php b/src/Symfony/Components/Routing/RouteCollection.php index 99a9f8c031..339bc11ae9 100644 --- a/src/Symfony/Components/Routing/RouteCollection.php +++ b/src/Symfony/Components/Routing/RouteCollection.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * A RouteCollection represents a set of Route instances. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class RouteCollection diff --git a/src/Symfony/Components/Routing/RouteCompiler.php b/src/Symfony/Components/Routing/RouteCompiler.php index f89296bf0d..5df61be52d 100644 --- a/src/Symfony/Components/Routing/RouteCompiler.php +++ b/src/Symfony/Components/Routing/RouteCompiler.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * RouteCompiler compiles Route instances to CompiledRoute instances. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class RouteCompiler implements RouteCompilerInterface diff --git a/src/Symfony/Components/Routing/RouteCompilerInterface.php b/src/Symfony/Components/Routing/RouteCompilerInterface.php index 0cdc3f1844..446d23796d 100644 --- a/src/Symfony/Components/Routing/RouteCompilerInterface.php +++ b/src/Symfony/Components/Routing/RouteCompilerInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Routing; /** * RouteCompilerInterface is the interface that all RouteCompiler classes must implements. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface RouteCompilerInterface diff --git a/src/Symfony/Components/Routing/Router.php b/src/Symfony/Components/Routing/Router.php index 8b760d9e57..98870e777e 100644 --- a/src/Symfony/Components/Routing/Router.php +++ b/src/Symfony/Components/Routing/Router.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -15,8 +15,8 @@ namespace Symfony\Components\Routing; * The Router class is an example of the integration of all pieces of the * routing system for easier use. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ class Router implements RouterInterface diff --git a/src/Symfony/Components/Routing/RouterInterface.php b/src/Symfony/Components/Routing/RouterInterface.php index 6267050d57..69c1c40761 100644 --- a/src/Symfony/Components/Routing/RouterInterface.php +++ b/src/Symfony/Components/Routing/RouterInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Routing; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ namespace Symfony\Components\Routing; * * This interface is the concatenation of UrlMatcherInterface and UrlGeneratorInterface. * - * @package symfony - * @subpackage routing + * @package Symfony + * @subpackage Components_Routing * @author Fabien Potencier */ interface RouterInterface diff --git a/src/Symfony/Components/Templating/DebuggerInterface.php b/src/Symfony/Components/Templating/DebuggerInterface.php index 685718db2f..59fcfa957f 100644 --- a/src/Symfony/Components/Templating/DebuggerInterface.php +++ b/src/Symfony/Components/Templating/DebuggerInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -15,8 +15,8 @@ namespace Symfony\Components\Templating; * DebuggerInterface is the interface you need to implement * to debug template loader instances. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ interface DebuggerInterface diff --git a/src/Symfony/Components/Templating/Engine.php b/src/Symfony/Components/Templating/Engine.php index 0e33de9642..39abfb4249 100644 --- a/src/Symfony/Components/Templating/Engine.php +++ b/src/Symfony/Components/Templating/Engine.php @@ -8,7 +8,7 @@ use Symfony\Components\Templating\Renderer\RendererInterface; use Symfony\Components\Templating\Helper\HelperInterface; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,8 +19,8 @@ use Symfony\Components\Templating\Helper\HelperInterface; /** * Engine is the main class of the templating component. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class Engine diff --git a/src/Symfony/Components/Templating/Helper/AssetsHelper.php b/src/Symfony/Components/Templating/Helper/AssetsHelper.php index 834ea4b496..96e38f72c4 100644 --- a/src/Symfony/Components/Templating/Helper/AssetsHelper.php +++ b/src/Symfony/Components/Templating/Helper/AssetsHelper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Helper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ namespace Symfony\Components\Templating\Helper; * * * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class AssetsHelper extends Helper diff --git a/src/Symfony/Components/Templating/Helper/Helper.php b/src/Symfony/Components/Templating/Helper/Helper.php index c1d65bb320..c735c927dc 100644 --- a/src/Symfony/Components/Templating/Helper/Helper.php +++ b/src/Symfony/Components/Templating/Helper/Helper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Helper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Helper; /** * Helper is the base class for all helper classes. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ abstract class Helper implements HelperInterface diff --git a/src/Symfony/Components/Templating/Helper/HelperInterface.php b/src/Symfony/Components/Templating/Helper/HelperInterface.php index a2570cad17..61704fc596 100644 --- a/src/Symfony/Components/Templating/Helper/HelperInterface.php +++ b/src/Symfony/Components/Templating/Helper/HelperInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Helper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Helper; /** * HelperInterface is the interface all helpers must implement. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ interface HelperInterface diff --git a/src/Symfony/Components/Templating/Helper/JavascriptsHelper.php b/src/Symfony/Components/Templating/Helper/JavascriptsHelper.php index 8480b8e5ca..50c5e9ce45 100644 --- a/src/Symfony/Components/Templating/Helper/JavascriptsHelper.php +++ b/src/Symfony/Components/Templating/Helper/JavascriptsHelper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Helper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ namespace Symfony\Components\Templating\Helper; * echo $this->javascripts; * * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class JavascriptsHelper extends Helper diff --git a/src/Symfony/Components/Templating/Helper/SlotsHelper.php b/src/Symfony/Components/Templating/Helper/SlotsHelper.php index 130bc0676d..5a0450c0dd 100644 --- a/src/Symfony/Components/Templating/Helper/SlotsHelper.php +++ b/src/Symfony/Components/Templating/Helper/SlotsHelper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Helper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Helper; /** * SlotsHelper manages template slots. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class SlotsHelper extends Helper diff --git a/src/Symfony/Components/Templating/Helper/StylesheetsHelper.php b/src/Symfony/Components/Templating/Helper/StylesheetsHelper.php index 94d4cf3c8c..b42bc8f139 100644 --- a/src/Symfony/Components/Templating/Helper/StylesheetsHelper.php +++ b/src/Symfony/Components/Templating/Helper/StylesheetsHelper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Helper; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ namespace Symfony\Components\Templating\Helper; * echo $this->stylesheets; * * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class StylesheetsHelper extends Helper diff --git a/src/Symfony/Components/Templating/Loader/CacheLoader.php b/src/Symfony/Components/Templating/Loader/CacheLoader.php index 1d25de0d7b..ff63e3a7df 100644 --- a/src/Symfony/Components/Templating/Loader/CacheLoader.php +++ b/src/Symfony/Components/Templating/Loader/CacheLoader.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\Storage\Storage; use Symfony\Components\Templating\Storage\FileStorage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,10 +19,10 @@ use Symfony\Components\Templating\Storage\FileStorage; * on the filesystem. * * This cache only caches on disk to allow PHP accelerators to cache the opcodes. - * All other mecanism would imply the use of `eval()`. + * All other mechanism would imply the use of `eval()`. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class CacheLoader extends Loader diff --git a/src/Symfony/Components/Templating/Loader/ChainLoader.php b/src/Symfony/Components/Templating/Loader/ChainLoader.php index 714919217f..7b26f5a46d 100644 --- a/src/Symfony/Components/Templating/Loader/ChainLoader.php +++ b/src/Symfony/Components/Templating/Loader/ChainLoader.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Templating\Loader; use Symfony\Components\Templating\Storage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Templating\Storage; /** * ChainLoader is a loader that calls other loaders to load templates. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class ChainLoader extends Loader diff --git a/src/Symfony/Components/Templating/Loader/CompilableLoaderInterface.php b/src/Symfony/Components/Templating/Loader/CompilableLoaderInterface.php index 242f562acc..583f2d207c 100644 --- a/src/Symfony/Components/Templating/Loader/CompilableLoaderInterface.php +++ b/src/Symfony/Components/Templating/Loader/CompilableLoaderInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Loader; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -15,8 +15,8 @@ namespace Symfony\Components\Templating\Loader; * CompilableLoaderInterface is the interface a template loader must implement * if the templates are compilable. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ interface CompilableLoaderInterface diff --git a/src/Symfony/Components/Templating/Loader/FilesystemLoader.php b/src/Symfony/Components/Templating/Loader/FilesystemLoader.php index 120a558be7..1a0e7fedac 100644 --- a/src/Symfony/Components/Templating/Loader/FilesystemLoader.php +++ b/src/Symfony/Components/Templating/Loader/FilesystemLoader.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\Storage\Storage; use Symfony\Components\Templating\Storage\FileStorage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Templating\Storage\FileStorage; /** * FilesystemLoader is a loader that read templates from the filesystem. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class FilesystemLoader extends Loader diff --git a/src/Symfony/Components/Templating/Loader/Loader.php b/src/Symfony/Components/Templating/Loader/Loader.php index 4df24149be..1ac5a77efc 100644 --- a/src/Symfony/Components/Templating/Loader/Loader.php +++ b/src/Symfony/Components/Templating/Loader/Loader.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Templating\Loader; use Symfony\Components\Templating\DebuggerInterface; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Templating\DebuggerInterface; /** * Loader is the base class for all template loader classes. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ abstract class Loader implements LoaderInterface diff --git a/src/Symfony/Components/Templating/Loader/LoaderInterface.php b/src/Symfony/Components/Templating/Loader/LoaderInterface.php index 9dda9a1ec2..a664defb1d 100644 --- a/src/Symfony/Components/Templating/Loader/LoaderInterface.php +++ b/src/Symfony/Components/Templating/Loader/LoaderInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Loader; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Loader; /** * LoaderInterface is the interface all loaders must implement. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ interface LoaderInterface diff --git a/src/Symfony/Components/Templating/Renderer/PhpRenderer.php b/src/Symfony/Components/Templating/Renderer/PhpRenderer.php index b83fd830b1..14b8de5741 100644 --- a/src/Symfony/Components/Templating/Renderer/PhpRenderer.php +++ b/src/Symfony/Components/Templating/Renderer/PhpRenderer.php @@ -7,7 +7,7 @@ use Symfony\Components\Templating\Storage\FileStorage; use Symfony\Components\Templating\Storage\StringStorage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ use Symfony\Components\Templating\Storage\StringStorage; /** * PhpRenderer is a renderer for PHP templates. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class PhpRenderer extends Renderer diff --git a/src/Symfony/Components/Templating/Renderer/Renderer.php b/src/Symfony/Components/Templating/Renderer/Renderer.php index 65e815cbca..aedf69cee3 100644 --- a/src/Symfony/Components/Templating/Renderer/Renderer.php +++ b/src/Symfony/Components/Templating/Renderer/Renderer.php @@ -5,7 +5,7 @@ namespace Symfony\Components\Templating\Renderer; use Symfony\Components\Templating\Engine; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -16,8 +16,8 @@ use Symfony\Components\Templating\Engine; /** * Renderer is the base class for all template renderer. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ abstract class Renderer implements RendererInterface diff --git a/src/Symfony/Components/Templating/Renderer/RendererInterface.php b/src/Symfony/Components/Templating/Renderer/RendererInterface.php index a7ffd8c676..e186175c0a 100644 --- a/src/Symfony/Components/Templating/Renderer/RendererInterface.php +++ b/src/Symfony/Components/Templating/Renderer/RendererInterface.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\Engine; use Symfony\Components\Templating\Storage\Storage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,8 @@ use Symfony\Components\Templating\Storage\Storage; /** * RendererInterface is the interface all renderer classes must implement. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ interface RendererInterface @@ -27,7 +27,7 @@ interface RendererInterface * Evaluates a template. * * @param Storage $template The template to render - * @param array $parameters An array of parameters to pass to the template + * @param array $parameters An array of parameters to pass to the template * * @return string|false The evaluated template, or false if the renderer is unable to render the template */ diff --git a/src/Symfony/Components/Templating/Storage/FileStorage.php b/src/Symfony/Components/Templating/Storage/FileStorage.php index 9cc74f74ce..1ba70892cd 100644 --- a/src/Symfony/Components/Templating/Storage/FileStorage.php +++ b/src/Symfony/Components/Templating/Storage/FileStorage.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Storage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Storage; /** * FileStorage represents a template stored on the filesystem. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class FileStorage extends Storage diff --git a/src/Symfony/Components/Templating/Storage/Storage.php b/src/Symfony/Components/Templating/Storage/Storage.php index 157e0f15ec..2760f418c0 100644 --- a/src/Symfony/Components/Templating/Storage/Storage.php +++ b/src/Symfony/Components/Templating/Storage/Storage.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Storage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Storage; /** * Storage is the base class for all storage classes. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ abstract class Storage diff --git a/src/Symfony/Components/Templating/Storage/StringStorage.php b/src/Symfony/Components/Templating/Storage/StringStorage.php index b14a003450..0e24b52f62 100644 --- a/src/Symfony/Components/Templating/Storage/StringStorage.php +++ b/src/Symfony/Components/Templating/Storage/StringStorage.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Templating\Storage; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Templating\Storage; /** * StringStorage represents a template stored in a string. * - * @package symfony - * @subpackage templating + * @package Symfony + * @subpackage Components_Templating * @author Fabien Potencier */ class StringStorage extends Storage diff --git a/src/Symfony/Components/Yaml/Dumper.php b/src/Symfony/Components/Yaml/Dumper.php index 2db3f6cf1e..98484365aa 100644 --- a/src/Symfony/Components/Yaml/Dumper.php +++ b/src/Symfony/Components/Yaml/Dumper.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Yaml; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE @@ -13,8 +13,8 @@ namespace Symfony\Components\Yaml; /** * Dumper dumps PHP variables to YAML strings. * - * @package symfony - * @subpackage yaml + * @package Symfony + * @subpackage Components_Yaml * @author Fabien Potencier */ class Dumper diff --git a/src/Symfony/Components/Yaml/Exception.php b/src/Symfony/Components/Yaml/Exception.php index 49cb7949ee..efcf8fc085 100644 --- a/src/Symfony/Components/Yaml/Exception.php +++ b/src/Symfony/Components/Yaml/Exception.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Yaml; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Yaml; /** * Exception class used by all exceptions thrown by the component. * - * @package symfony - * @subpackage yaml + * @package Symfony + * @subpackage Components_Yaml * @author Fabien Potencier */ class Exception extends \Exception diff --git a/src/Symfony/Components/Yaml/Inline.php b/src/Symfony/Components/Yaml/Inline.php index 7e3c630c89..8d4c730a8a 100644 --- a/src/Symfony/Components/Yaml/Inline.php +++ b/src/Symfony/Components/Yaml/Inline.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Yaml; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE @@ -13,8 +13,8 @@ namespace Symfony\Components\Yaml; /** * Inline implements a YAML parser/dumper for the YAML inline syntax. * - * @package symfony - * @subpackage yaml + * @package Symfony + * @subpackage Components_Yaml * @author Fabien Potencier */ class Inline diff --git a/src/Symfony/Components/Yaml/Parser.php b/src/Symfony/Components/Yaml/Parser.php index a20896bcbe..519cf8b965 100644 --- a/src/Symfony/Components/Yaml/Parser.php +++ b/src/Symfony/Components/Yaml/Parser.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Yaml; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE @@ -13,8 +13,8 @@ namespace Symfony\Components\Yaml; /** * Parser parses YAML strings to convert them to PHP arrays. * - * @package symfony - * @subpackage yaml + * @package Symfony + * @subpackage Components_Yaml * @author Fabien Potencier */ class Parser diff --git a/src/Symfony/Components/Yaml/ParserException.php b/src/Symfony/Components/Yaml/ParserException.php index 5ba22291de..356c7f544b 100644 --- a/src/Symfony/Components/Yaml/ParserException.php +++ b/src/Symfony/Components/Yaml/ParserException.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Yaml; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -14,8 +14,8 @@ namespace Symfony\Components\Yaml; /** * Exception class used by all exceptions thrown by the component. * - * @package symfony - * @subpackage yaml + * @package Symfony + * @subpackage Components_Yaml * @author Fabien Potencier */ class ParserException extends Exception diff --git a/src/Symfony/Components/Yaml/Yaml.php b/src/Symfony/Components/Yaml/Yaml.php index 7c744a578e..dec8156d8c 100644 --- a/src/Symfony/Components/Yaml/Yaml.php +++ b/src/Symfony/Components/Yaml/Yaml.php @@ -3,7 +3,7 @@ namespace Symfony\Components\Yaml; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * (c) 2004-2006 Fabien Potencier * * For the full copyright and license information, please view the LICENSE @@ -13,8 +13,8 @@ namespace Symfony\Components\Yaml; /** * Yaml offers convenience methods to load and dump YAML. * - * @package symfony - * @subpackage yaml + * @package Symfony + * @subpackage Components_Yaml * @author Fabien Potencier */ class Yaml diff --git a/src/Symfony/Foundation/Bundle/Bundle.php b/src/Symfony/Foundation/Bundle/Bundle.php index 1956b0e74c..88d8d32958 100644 --- a/src/Symfony/Foundation/Bundle/Bundle.php +++ b/src/Symfony/Foundation/Bundle/Bundle.php @@ -5,7 +5,7 @@ namespace Symfony\Foundation\Bundle; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Components\DependencyInjection\ContainerInterface; */ /** - * + * Bundle. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ abstract class Bundle implements BundleInterface diff --git a/src/Symfony/Foundation/Bundle/BundleInterface.php b/src/Symfony/Foundation/Bundle/BundleInterface.php index 0c536ea1a4..10acb5dc46 100644 --- a/src/Symfony/Foundation/Bundle/BundleInterface.php +++ b/src/Symfony/Foundation/Bundle/BundleInterface.php @@ -5,7 +5,7 @@ namespace Symfony\Foundation\Bundle; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Components\DependencyInjection\ContainerInterface; */ /** - * + * BundleInterface. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ interface BundleInterface diff --git a/src/Symfony/Foundation/Bundle/KernelBundle.php b/src/Symfony/Foundation/Bundle/KernelBundle.php index 5f2b39eb2b..3c6b3115fd 100644 --- a/src/Symfony/Foundation/Bundle/KernelBundle.php +++ b/src/Symfony/Foundation/Bundle/KernelBundle.php @@ -10,7 +10,7 @@ use Symfony\Components\DependencyInjection\Loader\XmlFileLoader; use Symfony\Components\DependencyInjection\BuilderConfiguration; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,9 +19,10 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; */ /** - * + * KernelBundle. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class KernelBundle extends Bundle diff --git a/src/Symfony/Foundation/Bundle/KernelExtension.php b/src/Symfony/Foundation/Bundle/KernelExtension.php index e5e316ef3a..32c040a120 100644 --- a/src/Symfony/Foundation/Bundle/KernelExtension.php +++ b/src/Symfony/Foundation/Bundle/KernelExtension.php @@ -2,8 +2,12 @@ namespace Symfony\Foundation\Bundle; +use Symfony\Components\DependencyInjection\Loader\LoaderExtension; +use Symfony\Components\DependencyInjection\Loader\XmlFileLoader; +use Symfony\Components\DependencyInjection\BuilderConfiguration; + /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -11,14 +15,12 @@ namespace Symfony\Foundation\Bundle; * file that was distributed with this source code. */ -use Symfony\Components\DependencyInjection\Loader\LoaderExtension; -use Symfony\Components\DependencyInjection\Loader\XmlFileLoader; -use Symfony\Components\DependencyInjection\BuilderConfiguration; - /** + * KernelExtension. * - * @package Symfony - * @author Fabien Potencier + * @package Symfony + * @subpackage Foundation + * @author Fabien Potencier */ class KernelExtension extends LoaderExtension { diff --git a/src/Symfony/Foundation/ClassCollectionLoader.php b/src/Symfony/Foundation/ClassCollectionLoader.php index d97bf6787e..eac732f834 100644 --- a/src/Symfony/Foundation/ClassCollectionLoader.php +++ b/src/Symfony/Foundation/ClassCollectionLoader.php @@ -3,7 +3,7 @@ namespace Symfony\Foundation; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Foundation; */ /** - * + * ClassCollectionLoader. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class ClassCollectionLoader diff --git a/src/Symfony/Foundation/Debug/ErrorException.php b/src/Symfony/Foundation/Debug/ErrorException.php index d1771e6ff4..8545e20d0d 100644 --- a/src/Symfony/Foundation/Debug/ErrorException.php +++ b/src/Symfony/Foundation/Debug/ErrorException.php @@ -3,7 +3,7 @@ namespace Symfony\Foundation\Debug; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Foundation\Debug; */ /** - * + * ErrorException. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class ErrorException extends \Exception diff --git a/src/Symfony/Foundation/Debug/ErrorHandler.php b/src/Symfony/Foundation/Debug/ErrorHandler.php index 4dda26cdd2..f678ec2aa3 100644 --- a/src/Symfony/Foundation/Debug/ErrorHandler.php +++ b/src/Symfony/Foundation/Debug/ErrorHandler.php @@ -3,7 +3,7 @@ namespace Symfony\Foundation\Debug; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Foundation\Debug; */ /** - * + * ErrorHandler. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class ErrorHandler diff --git a/src/Symfony/Foundation/Debug/EventDispatcher.php b/src/Symfony/Foundation/Debug/EventDispatcher.php index 307c263577..5171bb4591 100644 --- a/src/Symfony/Foundation/Debug/EventDispatcher.php +++ b/src/Symfony/Foundation/Debug/EventDispatcher.php @@ -9,7 +9,7 @@ use Symfony\Foundation\LoggerInterface; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -20,7 +20,8 @@ use Symfony\Components\DependencyInjection\ContainerInterface; /** * EventDispatcher extends the original EventDispatcher class to add some debugging tools. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class EventDispatcher extends BaseEventDispatcher diff --git a/src/Symfony/Foundation/EventDispatcher.php b/src/Symfony/Foundation/EventDispatcher.php index 3919358680..c774d25ce0 100644 --- a/src/Symfony/Foundation/EventDispatcher.php +++ b/src/Symfony/Foundation/EventDispatcher.php @@ -7,7 +7,7 @@ use Symfony\Components\EventDispatcher\Event; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -19,7 +19,8 @@ use Symfony\Components\DependencyInjection\ContainerInterface; * This EventDispatcher implementation uses a DependencyInjection container to * lazy load listeners. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class EventDispatcher extends BaseEventDispatcher diff --git a/src/Symfony/Foundation/Kernel.php b/src/Symfony/Foundation/Kernel.php index 25ae066317..27f494beb5 100644 --- a/src/Symfony/Foundation/Kernel.php +++ b/src/Symfony/Foundation/Kernel.php @@ -2,15 +2,6 @@ namespace Symfony\Foundation; -/* - * This file is part of the symfony package. - * - * (c) Fabien Potencier - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - use Symfony\Components\DependencyInjection\ContainerInterface; use Symfony\Components\DependencyInjection\Builder; use Symfony\Components\DependencyInjection\BuilderConfiguration; @@ -18,12 +9,22 @@ use Symfony\Components\DependencyInjection\Dumper\PhpDumper; use Symfony\Components\DependencyInjection\FileResource; use Symfony\Components\RequestHandler\RequestInterface; +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + /** * The Kernel is the heart of the Symfony system. It manages an environment * that can host bundles. * - * @package Symfony - * @author Fabien Potencier + * @package Symfony + * @subpackage Foundation + * @author Fabien Potencier */ abstract class Kernel implements \Serializable { diff --git a/src/Symfony/Foundation/LoggerInterface.php b/src/Symfony/Foundation/LoggerInterface.php index 862e3da0e6..e9313c8c93 100644 --- a/src/Symfony/Foundation/LoggerInterface.php +++ b/src/Symfony/Foundation/LoggerInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Foundation; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Foundation; */ /** - * + * LoggerInterface. * - * @package symfony + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ interface LoggerInterface diff --git a/src/Symfony/Foundation/UniversalClassLoader.php b/src/Symfony/Foundation/UniversalClassLoader.php index 69ed68798e..1745e916a1 100644 --- a/src/Symfony/Foundation/UniversalClassLoader.php +++ b/src/Symfony/Foundation/UniversalClassLoader.php @@ -3,7 +3,7 @@ namespace Symfony\Foundation; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -49,8 +49,8 @@ namespace Symfony\Foundation; * directory, and it will then fallback to the framework/ directory if not * found before giving up. * - * @package symfony - * @subpackage foundation + * @package Symfony + * @subpackage Foundation * @author Fabien Potencier */ class UniversalClassLoader diff --git a/src/Symfony/Foundation/packager.php b/src/Symfony/Foundation/packager.php index 7f487fd1aa..46726d16d5 100644 --- a/src/Symfony/Foundation/packager.php +++ b/src/Symfony/Foundation/packager.php @@ -3,7 +3,7 @@ require_once __DIR__.'/UniversalClassLoader.php'; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * diff --git a/src/Symfony/Framework/DoctrineBundle/Bundle.php b/src/Symfony/Framework/DoctrineBundle/Bundle.php index 01b7b9f845..6d80987968 100644 --- a/src/Symfony/Framework/DoctrineBundle/Bundle.php +++ b/src/Symfony/Framework/DoctrineBundle/Bundle.php @@ -9,7 +9,7 @@ use Symfony\Components\DependencyInjection\Loader\XmlFileLoader; use Symfony\Framework\DoctrineBundle\DependencyInjection\DoctrineExtension; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,9 +18,10 @@ use Symfony\Framework\DoctrineBundle\DependencyInjection\DoctrineExtension; */ /** - * + * Bundle. * - * @package symfony + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/BuildDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/BuildDoctrineCommand.php index 530fb406ce..4d3441c92a 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/BuildDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/BuildDoctrineCommand.php @@ -13,7 +13,7 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; use Doctrine\DBAL\Connection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -24,8 +24,8 @@ use Doctrine\DBAL\Connection; /** * Build command allows you to easily build and re-build your Doctrine development environment * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage * @author Kris Wallsmith diff --git a/src/Symfony/Framework/DoctrineBundle/Command/BuildEntitiesDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/BuildEntitiesDoctrineCommand.php index 7e49f2b2ce..5c6cb3131a 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/BuildEntitiesDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/BuildEntitiesDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Build all Bundle entity classes from mapping information. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/ClearCacheDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/ClearCacheDoctrineCommand.php index 56f6f6d6cf..1a09ef97ca 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/ClearCacheDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/ClearCacheDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Manage the cache clearing of the Doctrine ORM. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php index f867b29976..e4d9718678 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -24,8 +24,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; * Convert Doctrine ORM metadata mapping information between the various supported * formats. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/DatabaseToolDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/DatabaseToolDoctrineCommand.php index ed440f8522..e20331bbbc 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/DatabaseToolDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/DatabaseToolDoctrineCommand.php @@ -13,7 +13,7 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; use Doctrine\DBAL\Connection; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -24,8 +24,8 @@ use Doctrine\DBAL\Connection; /** * Database tool allows you to easily drop and create your configured databases. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/DoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/DoctrineCommand.php index 1216564d0f..10913bf8e9 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/DoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/DoctrineCommand.php @@ -15,7 +15,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -26,8 +26,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Base class for Doctrine console commands to extend from. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier */ abstract class DoctrineCommand extends Command diff --git a/src/Symfony/Framework/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php index b6a04dd1c0..81fac0093d 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Ensure the Doctrine ORM is configured properly for a production environment. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php index 193d60d66f..8883a33e1b 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Framework\WebBundle\Util\Filesystem; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ use Symfony\Framework\WebBundle\Util\Filesystem; /** * Generate the Doctrine ORM entity proxies to your cache directory. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier */ class GenerateProxiesDoctrineCommand extends DoctrineCommand diff --git a/src/Symfony/Framework/DoctrineBundle/Command/ImportMappingDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/ImportMappingDoctrineCommand.php index d551bbd279..8e8906eaae 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/ImportMappingDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/ImportMappingDoctrineCommand.php @@ -9,7 +9,7 @@ use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Output\Output; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,8 +21,8 @@ use Symfony\Components\Console\Output\Output; * Import the initial mapping information for entities from an existing database * into a bundle. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/InitEntityDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/InitEntityDoctrineCommand.php index b30d8a8b40..ebece434f4 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/InitEntityDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/InitEntityDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Initialize a new Doctrine entity inside a bundle. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php index 49635e7a5c..2c80c45609 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php @@ -15,7 +15,7 @@ use Doctrine\ORM\EntityManager; use Doctrine\ORM\Internal\CommitOrderCalculator; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -24,10 +24,10 @@ use Doctrine\ORM\Internal\CommitOrderCalculator; */ /** - * Load data fixtures from bundles + * Load data fixtures from bundles. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/RunDqlDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/RunDqlDoctrineCommand.php index edcd95a6ef..9604b7396f 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/RunDqlDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/RunDqlDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,10 +21,10 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; */ /** - * Execute a Doctrine DQL query and output the results + * Execute a Doctrine DQL query and output the results. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/RunSqlDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/RunSqlDoctrineCommand.php index a0bb433a9a..4f147a0f1a 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/RunSqlDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/RunSqlDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -21,10 +21,10 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; */ /** - * Execute a SQL query and output the results + * Execute a SQL query and output the results. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/SchemaToolDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/SchemaToolDoctrineCommand.php index f6c6ef5659..b6b0cc4dde 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/SchemaToolDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/SchemaToolDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Create, drop, and update your Doctrine ORM schema in the DBMS. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Command/VersionDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/VersionDoctrineCommand.php index d8eb4795b1..86fe1aba0f 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/VersionDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/VersionDoctrineCommand.php @@ -12,7 +12,7 @@ use Doctrine\Common\Cli\Configuration; use Doctrine\Common\Cli\CliController as DoctrineCliController; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -23,8 +23,8 @@ use Doctrine\Common\Cli\CliController as DoctrineCliController; /** * Check what version of the Doctrine ORM being used. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/Controller/DoctrineController.php b/src/Symfony/Framework/DoctrineBundle/Controller/DoctrineController.php index ada36da00e..08f10ef834 100644 --- a/src/Symfony/Framework/DoctrineBundle/Controller/DoctrineController.php +++ b/src/Symfony/Framework/DoctrineBundle/Controller/DoctrineController.php @@ -7,7 +7,7 @@ use Symfony\Components\RequestHandler\Request; use Symfony\Components\RequestHandler\Exception\NotFoundHttpException; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,7 +18,8 @@ use Symfony\Components\RequestHandler\Exception\NotFoundHttpException; /** * Doctrine ORM controller gives you access to entity managers and DQL queries. * - * @package symfony + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier * @author Jonathan H. Wage */ diff --git a/src/Symfony/Framework/DoctrineBundle/DataCollector/DoctrineDataCollector.php b/src/Symfony/Framework/DoctrineBundle/DataCollector/DoctrineDataCollector.php index 64e5819382..e997f2afde 100644 --- a/src/Symfony/Framework/DoctrineBundle/DataCollector/DoctrineDataCollector.php +++ b/src/Symfony/Framework/DoctrineBundle/DataCollector/DoctrineDataCollector.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\DataCollector; use Symfony\Framework\ProfilerBundle\DataCollector\DataCollector; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Framework\ProfilerBundle\DataCollector\DataCollector; */ /** - * + * DoctrineDataCollector. * - * @package symfony + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier */ class DoctrineDataCollector extends DataCollector diff --git a/src/Symfony/Framework/DoctrineBundle/DependencyInjection/DoctrineExtension.php b/src/Symfony/Framework/DoctrineBundle/DependencyInjection/DoctrineExtension.php index 5ba85edf8b..77e73fcff0 100644 --- a/src/Symfony/Framework/DoctrineBundle/DependencyInjection/DoctrineExtension.php +++ b/src/Symfony/Framework/DoctrineBundle/DependencyInjection/DoctrineExtension.php @@ -9,7 +9,7 @@ use Symfony\Components\DependencyInjection\Definition; use Symfony\Components\DependencyInjection\Reference; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,8 +20,8 @@ use Symfony\Components\DependencyInjection\Reference; /** * DoctrineExtension is an extension for the Doctrine DBAL and ORM library. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier */ class DoctrineExtension extends LoaderExtension diff --git a/src/Symfony/Framework/DoctrineBundle/Logger/DbalLogger.php b/src/Symfony/Framework/DoctrineBundle/Logger/DbalLogger.php index 83d9fcc958..12c56b9afa 100644 --- a/src/Symfony/Framework/DoctrineBundle/Logger/DbalLogger.php +++ b/src/Symfony/Framework/DoctrineBundle/Logger/DbalLogger.php @@ -6,7 +6,7 @@ use Symfony\Foundation\LoggerInterface; use Doctrine\DBAL\Logging\DebugStack; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -15,9 +15,10 @@ use Doctrine\DBAL\Logging\DebugStack; */ /** - * + * DbalLogger. * - * @package symfony + * @package Symfony + * @subpackage Framework_DoctrineBundle * @author Fabien Potencier */ class DbalLogger extends DebugStack diff --git a/src/Symfony/Framework/ProfilerBundle/Bundle.php b/src/Symfony/Framework/ProfilerBundle/Bundle.php index 527147c50c..e922af150d 100644 --- a/src/Symfony/Framework/ProfilerBundle/Bundle.php +++ b/src/Symfony/Framework/ProfilerBundle/Bundle.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\Loader\Loader; use Symfony\Framework\ProfilerBundle\DependencyInjection\ProfilerExtension; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Framework\ProfilerBundle\DependencyInjection\ProfilerExtension; */ /** - * + * Bundle. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class Bundle extends BaseBundle diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/AppDataCollector.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/AppDataCollector.php index dfa8e7318b..b933d13ff0 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/AppDataCollector.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/AppDataCollector.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; */ /** - * + * AppDataCollector. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class AppDataCollector extends DataCollector diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/ConfigDataCollector.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/ConfigDataCollector.php index 32cbbbd28b..5798590d2a 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/ConfigDataCollector.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/ConfigDataCollector.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; use Symfony\Foundation\Kernel; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Foundation\Kernel; */ /** - * + * ConfigDataCollector. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class ConfigDataCollector extends DataCollector diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollector.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollector.php index e23efcb609..ac0f4dbfd0 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollector.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollector.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Components\DependencyInjection\ContainerInterface; */ /** - * + * DataCollector. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ abstract class DataCollector implements DataCollectorInterface diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorInterface.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorInterface.php index fe2f8eba40..1af38e454f 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorInterface.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; */ /** - * + * DataCollectorInterface. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ interface DataCollectorInterface diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorManager.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorManager.php index b4e94d5506..fa558a75bf 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorManager.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorManager.php @@ -8,7 +8,7 @@ use Symfony\Components\RequestHandler\Response; use Symfony\Framework\ProfilerBundle\ProfilerStorage; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Framework\ProfilerBundle\ProfilerStorage; */ /** - * + * DataCollectorManager. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class DataCollectorManager diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/MemoryDataCollector.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/MemoryDataCollector.php index 17d6789f30..7721529b80 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/MemoryDataCollector.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/MemoryDataCollector.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; */ /** - * + * MemoryDataCollector. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class MemoryDataCollector extends DataCollector diff --git a/src/Symfony/Framework/ProfilerBundle/DataCollector/TimerDataCollector.php b/src/Symfony/Framework/ProfilerBundle/DataCollector/TimerDataCollector.php index 10d9c095aa..47ef2229bf 100644 --- a/src/Symfony/Framework/ProfilerBundle/DataCollector/TimerDataCollector.php +++ b/src/Symfony/Framework/ProfilerBundle/DataCollector/TimerDataCollector.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\ProfilerBundle\DataCollector; */ /** - * + * TimerDataCollector. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class TimerDataCollector extends DataCollector diff --git a/src/Symfony/Framework/ProfilerBundle/DependencyInjection/ProfilerExtension.php b/src/Symfony/Framework/ProfilerBundle/DependencyInjection/ProfilerExtension.php index cbf1785100..4dd4d972c0 100644 --- a/src/Symfony/Framework/ProfilerBundle/DependencyInjection/ProfilerExtension.php +++ b/src/Symfony/Framework/ProfilerBundle/DependencyInjection/ProfilerExtension.php @@ -7,7 +7,7 @@ use Symfony\Components\DependencyInjection\Loader\XmlFileLoader; use Symfony\Components\DependencyInjection\BuilderConfiguration; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,7 +18,8 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; /** * ProfilerExtension manages the data collectors and the web debug toolbar. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class ProfilerExtension extends LoaderExtension diff --git a/src/Symfony/Framework/ProfilerBundle/Listener/WebDebugToolbar.php b/src/Symfony/Framework/ProfilerBundle/Listener/WebDebugToolbar.php index 71e32db83c..2dc4c9e50b 100644 --- a/src/Symfony/Framework/ProfilerBundle/Listener/WebDebugToolbar.php +++ b/src/Symfony/Framework/ProfilerBundle/Listener/WebDebugToolbar.php @@ -8,7 +8,7 @@ use Symfony\Components\RequestHandler\Response; use Symfony\Framework\ProfilerBundle\DataCollector\DataCollectorManager; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Framework\ProfilerBundle\DataCollector\DataCollectorManager; */ /** - * + * WebDebugToolbar. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class WebDebugToolbar diff --git a/src/Symfony/Framework/ProfilerBundle/ProfilerStorage.php b/src/Symfony/Framework/ProfilerBundle/ProfilerStorage.php index 12ae1247ee..308ca21a0f 100644 --- a/src/Symfony/Framework/ProfilerBundle/ProfilerStorage.php +++ b/src/Symfony/Framework/ProfilerBundle/ProfilerStorage.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\ProfilerBundle; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\ProfilerBundle; */ /** - * + * ProfilerStorage. * - * @package symfony + * @package Symfony + * @subpackage Framework_ProfilerBundle * @author Fabien Potencier */ class ProfilerStorage diff --git a/src/Symfony/Framework/SwiftmailerBundle/Bundle.php b/src/Symfony/Framework/SwiftmailerBundle/Bundle.php index 8def508fe6..17dbd25deb 100644 --- a/src/Symfony/Framework/SwiftmailerBundle/Bundle.php +++ b/src/Symfony/Framework/SwiftmailerBundle/Bundle.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\Loader\Loader; use Symfony\Framework\SwiftmailerBundle\DependencyInjection\SwiftmailerExtension; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Framework\SwiftmailerBundle\DependencyInjection\SwiftmailerExtension */ /** - * + * Bundle. * - * @package symfony + * @package Symfony + * @subpackage Framework_SwiftmailerBundle * @author Fabien Potencier */ class Bundle extends BaseBundle diff --git a/src/Symfony/Framework/SwiftmailerBundle/DependencyInjection/SwiftmailerExtension.php b/src/Symfony/Framework/SwiftmailerBundle/DependencyInjection/SwiftmailerExtension.php index e8584dac7f..21779c5820 100644 --- a/src/Symfony/Framework/SwiftmailerBundle/DependencyInjection/SwiftmailerExtension.php +++ b/src/Symfony/Framework/SwiftmailerBundle/DependencyInjection/SwiftmailerExtension.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; use Symfony\Components\DependencyInjection\Reference; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,10 +17,10 @@ use Symfony\Components\DependencyInjection\Reference; */ /** - * SwiftMailerExtension is an extension for the Swift Mailer library. + * SwiftMailerExtension is an extension for the SwiftMailer library. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Framework_SwiftmailerBundle * @author Fabien Potencier */ class SwiftMailerExtension extends LoaderExtension diff --git a/src/Symfony/Framework/WebBundle/Bundle.php b/src/Symfony/Framework/WebBundle/Bundle.php index f0725b6828..5218a31a29 100644 --- a/src/Symfony/Framework/WebBundle/Bundle.php +++ b/src/Symfony/Framework/WebBundle/Bundle.php @@ -10,7 +10,7 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; use Symfony\Framework\WebBundle\DependencyInjection\WebExtension; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,9 +19,10 @@ use Symfony\Framework\WebBundle\DependencyInjection\WebExtension; */ /** - * + * Bundle. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class Bundle extends BaseBundle diff --git a/src/Symfony/Framework/WebBundle/Command/AssetsInstallCommand.php b/src/Symfony/Framework/WebBundle/Command/AssetsInstallCommand.php index fa3b9ad12a..d789044b80 100644 --- a/src/Symfony/Framework/WebBundle/Command/AssetsInstallCommand.php +++ b/src/Symfony/Framework/WebBundle/Command/AssetsInstallCommand.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Framework\WebBundle\Util\Filesystem; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,10 +19,10 @@ use Symfony\Framework\WebBundle\Util\Filesystem; */ /** - * + * AssetsInstallCommand. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class AssetsInstallCommand extends Command diff --git a/src/Symfony/Framework/WebBundle/Command/Command.php b/src/Symfony/Framework/WebBundle/Command/Command.php index 6a1cef89ad..0a178bedd2 100644 --- a/src/Symfony/Framework/WebBundle/Command/Command.php +++ b/src/Symfony/Framework/WebBundle/Command/Command.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Components\Console\Command\Command as BaseCommand; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,10 +19,10 @@ use Symfony\Components\Console\Command\Command as BaseCommand; */ /** - * + * Command. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ abstract class Command extends BaseCommand diff --git a/src/Symfony/Framework/WebBundle/Command/InitBundleCommand.php b/src/Symfony/Framework/WebBundle/Command/InitBundleCommand.php index 7fe622bbef..117e51b6e4 100644 --- a/src/Symfony/Framework/WebBundle/Command/InitBundleCommand.php +++ b/src/Symfony/Framework/WebBundle/Command/InitBundleCommand.php @@ -11,7 +11,7 @@ use Symfony\Framework\WebBundle\Util\Filesystem; use Symfony\Framework\WebBundle\Util\Mustache; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -22,8 +22,8 @@ use Symfony\Framework\WebBundle\Util\Mustache; /** * Initializes a new bundle. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class InitBundleCommand extends Command diff --git a/src/Symfony/Framework/WebBundle/Command/RouterApacheDumperCommand.php b/src/Symfony/Framework/WebBundle/Command/RouterApacheDumperCommand.php index d1b70fb7bf..db1e923be2 100644 --- a/src/Symfony/Framework/WebBundle/Command/RouterApacheDumperCommand.php +++ b/src/Symfony/Framework/WebBundle/Command/RouterApacheDumperCommand.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Components\Routing\Matcher\Dumper\ApacheMatcherDumper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,10 +19,10 @@ use Symfony\Components\Routing\Matcher\Dumper\ApacheMatcherDumper; */ /** - * + * RouterApacheDumperCommand. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class RouterApacheDumperCommand extends Command diff --git a/src/Symfony/Framework/WebBundle/Command/RouterDebugCommand.php b/src/Symfony/Framework/WebBundle/Command/RouterDebugCommand.php index 952f4c61ef..4b112cd339 100644 --- a/src/Symfony/Framework/WebBundle/Command/RouterDebugCommand.php +++ b/src/Symfony/Framework/WebBundle/Command/RouterDebugCommand.php @@ -10,7 +10,7 @@ use Symfony\Components\Console\Output\Output; use Symfony\Components\Routing\Matcher\Dumper\ApacheMatcherDumper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,10 +19,10 @@ use Symfony\Components\Routing\Matcher\Dumper\ApacheMatcherDumper; */ /** - * + * RouterDebugCommand. * - * @package symfony - * @subpackage console + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class RouterDebugCommand extends Command diff --git a/src/Symfony/Framework/WebBundle/Console/Application.php b/src/Symfony/Framework/WebBundle/Console/Application.php index 8151004bda..7b999219b2 100644 --- a/src/Symfony/Framework/WebBundle/Console/Application.php +++ b/src/Symfony/Framework/WebBundle/Console/Application.php @@ -9,7 +9,7 @@ use Symfony\Components\Console\Output\OutputInterface; use Symfony\Foundation\Kernel; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,9 +18,10 @@ use Symfony\Foundation\Kernel; */ /** + * Application. * - * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class Application extends BaseApplication diff --git a/src/Symfony/Framework/WebBundle/Console/BootstrapApplication.php b/src/Symfony/Framework/WebBundle/Console/BootstrapApplication.php index 33f4e57107..eeecf565bb 100644 --- a/src/Symfony/Framework/WebBundle/Console/BootstrapApplication.php +++ b/src/Symfony/Framework/WebBundle/Console/BootstrapApplication.php @@ -10,7 +10,7 @@ use Symfony\Foundation\Kernel; use Symfony\Framework\WebBundle\Command\InitApplicationCommand; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,9 +19,10 @@ use Symfony\Framework\WebBundle\Command\InitApplicationCommand; */ /** - * + * BootstrapApplication. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class BootstrapApplication extends BaseApplication diff --git a/src/Symfony/Framework/WebBundle/Console/Shell.php b/src/Symfony/Framework/WebBundle/Console/Shell.php index 7d158a49e5..735fc52125 100644 --- a/src/Symfony/Framework/WebBundle/Console/Shell.php +++ b/src/Symfony/Framework/WebBundle/Console/Shell.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\WebBundle\Console; use Symfony\Components\Console\Shell as BaseShell; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Components\Console\Shell as BaseShell; */ /** - * + * Shell. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class Shell extends BaseShell diff --git a/src/Symfony/Framework/WebBundle/Controller.php b/src/Symfony/Framework/WebBundle/Controller.php index 8803e4f8b5..1d8698c1a1 100644 --- a/src/Symfony/Framework/WebBundle/Controller.php +++ b/src/Symfony/Framework/WebBundle/Controller.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\WebBundle; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,7 +16,8 @@ use Symfony\Components\DependencyInjection\ContainerInterface; /** * WebBundle Controller gives you convenient access to all commonly needed services. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class Controller diff --git a/src/Symfony/Framework/WebBundle/Controller/DefaultController.php b/src/Symfony/Framework/WebBundle/Controller/DefaultController.php index 409941712f..9830f4bcd8 100644 --- a/src/Symfony/Framework/WebBundle/Controller/DefaultController.php +++ b/src/Symfony/Framework/WebBundle/Controller/DefaultController.php @@ -6,7 +6,7 @@ use Symfony\Framework\WebBundle\Controller; use Symfony\Components\RequestHandler\Request; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,7 +17,8 @@ use Symfony\Components\RequestHandler\Request; /** * * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class DefaultController extends Controller diff --git a/src/Symfony/Framework/WebBundle/Controller/ExceptionController.php b/src/Symfony/Framework/WebBundle/Controller/ExceptionController.php index a8ecc0bd24..1b54d6c190 100644 --- a/src/Symfony/Framework/WebBundle/Controller/ExceptionController.php +++ b/src/Symfony/Framework/WebBundle/Controller/ExceptionController.php @@ -9,7 +9,7 @@ use Symfony\Components\RequestHandler\Response; use Symfony\Components\RequestHandler\Exception\HttpException; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -20,7 +20,8 @@ use Symfony\Components\RequestHandler\Exception\HttpException; /** * * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class ExceptionController extends Controller diff --git a/src/Symfony/Framework/WebBundle/Controller/RedirectController.php b/src/Symfony/Framework/WebBundle/Controller/RedirectController.php index 38fb081fe3..6d370d02f8 100644 --- a/src/Symfony/Framework/WebBundle/Controller/RedirectController.php +++ b/src/Symfony/Framework/WebBundle/Controller/RedirectController.php @@ -6,7 +6,7 @@ use Symfony\Framework\WebBundle\Controller; use Symfony\Components\RequestHandler\Request; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,7 +17,8 @@ use Symfony\Components\RequestHandler\Request; /** * * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class RedirectController extends Controller diff --git a/src/Symfony/Framework/WebBundle/Controller/TemplateController.php b/src/Symfony/Framework/WebBundle/Controller/TemplateController.php index 49b165d842..76be9ffaa6 100644 --- a/src/Symfony/Framework/WebBundle/Controller/TemplateController.php +++ b/src/Symfony/Framework/WebBundle/Controller/TemplateController.php @@ -6,7 +6,7 @@ use Symfony\Framework\WebBundle\Controller; use Symfony\Components\RequestHandler\Request; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,7 +17,8 @@ use Symfony\Components\RequestHandler\Request; /** * * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class TemplateController extends Controller diff --git a/src/Symfony/Framework/WebBundle/Debug/ExceptionFormatter.php b/src/Symfony/Framework/WebBundle/Debug/ExceptionFormatter.php index 9b2e74ee31..0b24111791 100644 --- a/src/Symfony/Framework/WebBundle/Debug/ExceptionFormatter.php +++ b/src/Symfony/Framework/WebBundle/Debug/ExceptionFormatter.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\WebBundle\Debug; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Components\DependencyInjection\ContainerInterface; */ /** - * + * ExceptionFormatter. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class ExceptionFormatter diff --git a/src/Symfony/Framework/WebBundle/DependencyInjection/WebExtension.php b/src/Symfony/Framework/WebBundle/DependencyInjection/WebExtension.php index c6052d1c5d..21e65da08b 100644 --- a/src/Symfony/Framework/WebBundle/DependencyInjection/WebExtension.php +++ b/src/Symfony/Framework/WebBundle/DependencyInjection/WebExtension.php @@ -8,7 +8,7 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; use Symfony\Components\DependencyInjection\Reference; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Components\DependencyInjection\Reference; */ /** - * + * WebExtension. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class WebExtension extends LoaderExtension diff --git a/src/Symfony/Framework/WebBundle/Helper/ActionsHelper.php b/src/Symfony/Framework/WebBundle/Helper/ActionsHelper.php index ad027296fa..e0296d7b12 100644 --- a/src/Symfony/Framework/WebBundle/Helper/ActionsHelper.php +++ b/src/Symfony/Framework/WebBundle/Helper/ActionsHelper.php @@ -7,7 +7,7 @@ use Symfony\Components\DependencyInjection\ContainerInterface; use Symfony\Components\OutputEscaper\Escaper; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,9 +16,10 @@ use Symfony\Components\OutputEscaper\Escaper; */ /** - * + * ActionsHelper. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class ActionsHelper extends Helper diff --git a/src/Symfony/Framework/WebBundle/Helper/RequestHelper.php b/src/Symfony/Framework/WebBundle/Helper/RequestHelper.php index a0c46d4d1a..5115cdd676 100644 --- a/src/Symfony/Framework/WebBundle/Helper/RequestHelper.php +++ b/src/Symfony/Framework/WebBundle/Helper/RequestHelper.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\Helper\Helper; use Symfony\Components\RequestHandler\Request; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -15,9 +15,10 @@ use Symfony\Components\RequestHandler\Request; */ /** - * + * RequestHelper. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class RequestHelper extends Helper diff --git a/src/Symfony/Framework/WebBundle/Helper/RouterHelper.php b/src/Symfony/Framework/WebBundle/Helper/RouterHelper.php index e48051e4e6..cb34e67b3e 100644 --- a/src/Symfony/Framework/WebBundle/Helper/RouterHelper.php +++ b/src/Symfony/Framework/WebBundle/Helper/RouterHelper.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\Helper\Helper; use Symfony\Components\Routing\Router; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -15,9 +15,10 @@ use Symfony\Components\Routing\Router; */ /** - * + * RouterHelper. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class RouterHelper extends Helper diff --git a/src/Symfony/Framework/WebBundle/Helper/UserHelper.php b/src/Symfony/Framework/WebBundle/Helper/UserHelper.php index 96ad9ce815..bb498e007b 100644 --- a/src/Symfony/Framework/WebBundle/Helper/UserHelper.php +++ b/src/Symfony/Framework/WebBundle/Helper/UserHelper.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\Helper\Helper; use Symfony\Framework\WebBundle\User; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -15,9 +15,10 @@ use Symfony\Framework\WebBundle\User; */ /** - * + * UserHelper. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class UserHelper extends Helper diff --git a/src/Symfony/Framework/WebBundle/Listener/ControllerLoader.php b/src/Symfony/Framework/WebBundle/Listener/ControllerLoader.php index 9984af5a0f..f42c22b9b3 100644 --- a/src/Symfony/Framework/WebBundle/Listener/ControllerLoader.php +++ b/src/Symfony/Framework/WebBundle/Listener/ControllerLoader.php @@ -7,7 +7,7 @@ use Symfony\Components\DependencyInjection\ContainerInterface; use Symfony\Components\EventDispatcher\Event; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -19,7 +19,8 @@ use Symfony\Components\EventDispatcher\Event; * ControllerLoader listen to the core.load_controller and finds the controller * to execute based on the request parameters. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class ControllerLoader diff --git a/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php b/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php index 0abee28d4c..9d71158da8 100644 --- a/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php +++ b/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php @@ -7,7 +7,7 @@ use Symfony\Components\EventDispatcher\Event; use Symfony\Foundation\LoggerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,9 +16,10 @@ use Symfony\Foundation\LoggerInterface; */ /** - * + * ExceptionHandler. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class ExceptionHandler diff --git a/src/Symfony/Framework/WebBundle/Listener/RequestParser.php b/src/Symfony/Framework/WebBundle/Listener/RequestParser.php index d19c50b68a..156ab0d9ff 100644 --- a/src/Symfony/Framework/WebBundle/Listener/RequestParser.php +++ b/src/Symfony/Framework/WebBundle/Listener/RequestParser.php @@ -8,7 +8,7 @@ use Symfony\Components\EventDispatcher\Event; use Symfony\Components\Routing\RouterInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Components\Routing\RouterInterface; */ /** - * + * RequestParser. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class RequestParser diff --git a/src/Symfony/Framework/WebBundle/Listener/ResponseFilter.php b/src/Symfony/Framework/WebBundle/Listener/ResponseFilter.php index 6f64e1c020..e0f0138f67 100644 --- a/src/Symfony/Framework/WebBundle/Listener/ResponseFilter.php +++ b/src/Symfony/Framework/WebBundle/Listener/ResponseFilter.php @@ -8,7 +8,7 @@ use Symfony\Components\RequestHandler\RequestInterface; use Symfony\Components\RequestHandler\ResponseInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -17,9 +17,10 @@ use Symfony\Components\RequestHandler\ResponseInterface; */ /** - * + * ResponseFilter. * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class ResponseFilter diff --git a/src/Symfony/Framework/WebBundle/Session/NativeSession.php b/src/Symfony/Framework/WebBundle/Session/NativeSession.php index f70e39536e..a1cada807c 100644 --- a/src/Symfony/Framework/WebBundle/Session/NativeSession.php +++ b/src/Symfony/Framework/WebBundle/Session/NativeSession.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Session; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\WebBundle\Session; */ /** + * NativeSession. * - * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class NativeSession implements SessionInterface diff --git a/src/Symfony/Framework/WebBundle/Session/PdoSession.php b/src/Symfony/Framework/WebBundle/Session/PdoSession.php index 218c332aba..60c71c04b5 100644 --- a/src/Symfony/Framework/WebBundle/Session/PdoSession.php +++ b/src/Symfony/Framework/WebBundle/Session/PdoSession.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Session; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\WebBundle\Session; */ /** + * PdoSession. * - * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class PdoSession extends NativeSession diff --git a/src/Symfony/Framework/WebBundle/Session/SessionInterface.php b/src/Symfony/Framework/WebBundle/Session/SessionInterface.php index fb2661d158..8f4fb635c3 100644 --- a/src/Symfony/Framework/WebBundle/Session/SessionInterface.php +++ b/src/Symfony/Framework/WebBundle/Session/SessionInterface.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Session; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\WebBundle\Session; */ /** + * SessionInterface. * - * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ interface SessionInterface diff --git a/src/Symfony/Framework/WebBundle/Templating/Debugger.php b/src/Symfony/Framework/WebBundle/Templating/Debugger.php index 280494f8bc..5f3477160f 100644 --- a/src/Symfony/Framework/WebBundle/Templating/Debugger.php +++ b/src/Symfony/Framework/WebBundle/Templating/Debugger.php @@ -6,7 +6,7 @@ use Symfony\Components\Templating\DebuggerInterface; use Symfony\Foundation\LoggerInterface; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -17,8 +17,9 @@ use Symfony\Foundation\LoggerInterface; /** * Binds the Symfony templating loader debugger to the Symfony logger. * - * @package symfony - * @author Fabien Potencier + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier */ class Debugger implements DebuggerInterface { diff --git a/src/Symfony/Framework/WebBundle/Templating/Engine.php b/src/Symfony/Framework/WebBundle/Templating/Engine.php index 2c42ad7158..62d256f822 100644 --- a/src/Symfony/Framework/WebBundle/Templating/Engine.php +++ b/src/Symfony/Framework/WebBundle/Templating/Engine.php @@ -8,7 +8,7 @@ use Symfony\Components\OutputEscaper\Escaper; use Symfony\Components\DependencyInjection\ContainerInterface; /* - * This file is part of the symfony package. + * This file is part of the Symfony package. * * (c) Fabien Potencier * @@ -20,8 +20,9 @@ use Symfony\Components\DependencyInjection\ContainerInterface; * This engine knows how to render Symfony templates and automatically * escapes template parameters. * - * @package symfony - * @author Fabien Potencier + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier */ class Engine extends BaseEngine { diff --git a/src/Symfony/Framework/WebBundle/User.php b/src/Symfony/Framework/WebBundle/User.php index 5831f6d30b..1dcd67726b 100644 --- a/src/Symfony/Framework/WebBundle/User.php +++ b/src/Symfony/Framework/WebBundle/User.php @@ -7,7 +7,7 @@ use Symfony\Components\EventDispatcher\Event; use Symfony\Framework\WebBundle\Session\SessionInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -16,9 +16,10 @@ use Symfony\Framework\WebBundle\Session\SessionInterface; */ /** + * User. * - * - * @package symfony + * @package Symfony + * @subpackage Framework_WebBundle * @author Fabien Potencier */ class User diff --git a/src/Symfony/Framework/WebBundle/Util/Filesystem.php b/src/Symfony/Framework/WebBundle/Util/Filesystem.php index 8288d9b002..793453c222 100644 --- a/src/Symfony/Framework/WebBundle/Util/Filesystem.php +++ b/src/Symfony/Framework/WebBundle/Util/Filesystem.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Util; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,8 +14,9 @@ namespace Symfony\Framework\WebBundle\Util; /** * Provides basic utility to manipulate the file system. * - * @package symfony - * @author Fabien Potencier + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier */ class Filesystem { diff --git a/src/Symfony/Framework/WebBundle/Util/Finder.php b/src/Symfony/Framework/WebBundle/Util/Finder.php index e17de759b0..cb38db59c5 100644 --- a/src/Symfony/Framework/WebBundle/Util/Finder.php +++ b/src/Symfony/Framework/WebBundle/Util/Finder.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Util; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -24,8 +24,9 @@ namespace Symfony\Framework\WebBundle\Util; * * Interface loosely based on perl File::Find::Rule module. * - * @package symfony - * @author Fabien Potencier + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier */ class Finder { diff --git a/src/Symfony/Framework/WebBundle/Util/Glob.php b/src/Symfony/Framework/WebBundle/Util/Glob.php index 9748e64b35..580098de8f 100644 --- a/src/Symfony/Framework/WebBundle/Util/Glob.php +++ b/src/Symfony/Framework/WebBundle/Util/Glob.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Util; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -28,10 +28,11 @@ namespace Symfony\Framework\WebBundle\Util; * * based on perl Text::Glob module. * - * @package symfony - * @author Fabien Potencier php port + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier php port * @author Richard Clamp perl version - * @copyright 2004-2005 Fabien Potencier + * @copyright 2004-2005 Fabien Potencier * @copyright 2002 Richard Clamp */ class Glob diff --git a/src/Symfony/Framework/WebBundle/Util/Mustache.php b/src/Symfony/Framework/WebBundle/Util/Mustache.php index 7d43d7c93c..50a3875112 100644 --- a/src/Symfony/Framework/WebBundle/Util/Mustache.php +++ b/src/Symfony/Framework/WebBundle/Util/Mustache.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Util; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -11,6 +11,13 @@ namespace Symfony\Framework\WebBundle\Util; * with this source code in the file LICENSE. */ +/** + * Mustache. + * + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier + */ class Mustache { static public function renderFile($file, $parameters) diff --git a/src/Symfony/Framework/WebBundle/Util/NumberCompare.php b/src/Symfony/Framework/WebBundle/Util/NumberCompare.php index 5e7a7e6ef9..0be9ef49a6 100644 --- a/src/Symfony/Framework/WebBundle/Util/NumberCompare.php +++ b/src/Symfony/Framework/WebBundle/Util/NumberCompare.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\WebBundle\Util; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -27,11 +27,11 @@ namespace Symfony\Framework\WebBundle\Util; * * based on perl Number::Compare module. * - * @package symfony - * @subpackage util - * @author Fabien Potencier php port + * @package Symfony + * @subpackage Framework_WebBundle + * @author Fabien Potencier php port * @author Richard Clamp perl version - * @copyright 2004-2005 Fabien Potencier + * @copyright 2004-2005 Fabien Potencier * @copyright 2002 Richard Clamp * @see http://physics.nist.gov/cuu/Units/binary.html */ diff --git a/src/Symfony/Framework/ZendBundle/Bundle.php b/src/Symfony/Framework/ZendBundle/Bundle.php index 321e110fca..d8723c89fb 100644 --- a/src/Symfony/Framework/ZendBundle/Bundle.php +++ b/src/Symfony/Framework/ZendBundle/Bundle.php @@ -9,7 +9,7 @@ use Symfony\Components\DependencyInjection\Loader\Loader; use Symfony\Framework\ZendBundle\DependencyInjection\ZendExtension; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,9 +18,10 @@ use Symfony\Framework\ZendBundle\DependencyInjection\ZendExtension; */ /** - * + * Bundle. * - * @package symfony + * @package Symfony + * @subpackage Framework_ZendBundle * @author Fabien Potencier */ class Bundle extends BaseBundle diff --git a/src/Symfony/Framework/ZendBundle/DependencyInjection/ZendExtension.php b/src/Symfony/Framework/ZendBundle/DependencyInjection/ZendExtension.php index 848dc951f2..99771132de 100644 --- a/src/Symfony/Framework/ZendBundle/DependencyInjection/ZendExtension.php +++ b/src/Symfony/Framework/ZendBundle/DependencyInjection/ZendExtension.php @@ -7,7 +7,7 @@ use Symfony\Components\DependencyInjection\Loader\XmlFileLoader; use Symfony\Components\DependencyInjection\BuilderConfiguration; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -18,8 +18,8 @@ use Symfony\Components\DependencyInjection\BuilderConfiguration; /** * ZendExtension is an extension for the Zend Framework libraries. * - * @package symfony - * @subpackage dependency_injection + * @package Symfony + * @subpackage Framework_ZendBundle * @author Fabien Potencier */ class ZendExtension extends LoaderExtension diff --git a/src/Symfony/Framework/ZendBundle/Logger/DebugLogger.php b/src/Symfony/Framework/ZendBundle/Logger/DebugLogger.php index 1197acd6b9..3e31e84c37 100644 --- a/src/Symfony/Framework/ZendBundle/Logger/DebugLogger.php +++ b/src/Symfony/Framework/ZendBundle/Logger/DebugLogger.php @@ -3,7 +3,7 @@ namespace Symfony\Framework\ZendBundle\Logger; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -12,9 +12,10 @@ namespace Symfony\Framework\ZendBundle\Logger; */ /** - * + * DebugLogger. * - * @package symfony + * @package Symfony + * @subpackage Framework_ZendBundle * @author Fabien Potencier */ class DebugLogger extends \Zend_Log_Writer_Abstract diff --git a/src/Symfony/Framework/ZendBundle/Logger/Logger.php b/src/Symfony/Framework/ZendBundle/Logger/Logger.php index 13bf898577..d21ea66680 100644 --- a/src/Symfony/Framework/ZendBundle/Logger/Logger.php +++ b/src/Symfony/Framework/ZendBundle/Logger/Logger.php @@ -5,7 +5,7 @@ namespace Symfony\Framework\ZendBundle\Logger; use Symfony\Foundation\LoggerInterface; /* - * This file is part of the symfony framework. + * This file is part of the Symfony framework. * * (c) Fabien Potencier * @@ -14,9 +14,10 @@ use Symfony\Foundation\LoggerInterface; */ /** - * + * Logger. * - * @package symfony + * @package Symfony + * @subpackage Framework_ZendBundle * @author Fabien Potencier */ class Logger extends \Zend_Log implements LoggerInterface