Skip to content

Commit ba26cd0

Browse files
committed
Merge branch '2.3' into 2.7
Conflicts: src/Symfony/Component/ClassLoader/ApcUniversalClassLoader.php src/Symfony/Component/ClassLoader/DebugClassLoader.php src/Symfony/Component/ClassLoader/UniversalClassLoader.php src/Symfony/Component/Console/Command/Command.php src/Symfony/Component/DependencyInjection/Definition.php src/Symfony/Component/DependencyInjection/DefinitionDecorator.php src/Symfony/Component/EventDispatcher/Event.php src/Symfony/Component/Filesystem/Exception/IOException.php src/Symfony/Component/HttpFoundation/File/File.php src/Symfony/Component/HttpFoundation/ResponseHeaderBag.php src/Symfony/Component/HttpFoundation/Session/SessionInterface.php src/Symfony/Component/HttpFoundation/StreamedResponse.php src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php src/Symfony/Component/HttpKernel/Controller/ControllerResolverInterface.php src/Symfony/Component/HttpKernel/HttpKernel.php src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/HttpKernel/KernelInterface.php src/Symfony/Component/HttpKernel/Log/LoggerInterface.php src/Symfony/Component/HttpKernel/Log/NullLogger.php src/Symfony/Component/Process/Process.php src/Symfony/Component/Routing/RequestContext.php src/Symfony/Component/Routing/Route.php src/Symfony/Component/Templating/EngineInterface.php src/Symfony/Component/Templating/PhpEngine.php src/Symfony/Component/Templating/TemplateNameParser.php src/Symfony/Component/Templating/TemplateReference.php src/Symfony/Component/Templating/TemplateReferenceInterface.php src/Symfony/Component/Translation/IdentityTranslator.php src/Symfony/Component/Translation/Translator.php src/Symfony/Component/Validator/ConstraintViolationInterface.php src/Symfony/Component/Validator/Constraints/False.php src/Symfony/Component/Validator/Constraints/FalseValidator.php src/Symfony/Component/Validator/Constraints/GroupSequence.php src/Symfony/Component/Validator/Constraints/Image.php src/Symfony/Component/Validator/Constraints/Null.php src/Symfony/Component/Validator/Constraints/NullValidator.php src/Symfony/Component/Validator/Constraints/True.php src/Symfony/Component/Validator/Constraints/TrueValidator.php src/Symfony/Component/Validator/ExecutionContextInterface.php src/Symfony/Component/Validator/ValidatorInterface.php
2 parents 6c5fae8 + f8cae3c commit ba26cd0

22 files changed

+0
-109
lines changed

Exception/ExceptionInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* ExceptionInterface.
1616
*
1717
* @author Alexandre Salomé <[email protected]>
18-
*
19-
* @api
2018
*/
2119
interface ExceptionInterface
2220
{

Exception/InvalidParameterException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Exception thrown when a parameter is not valid.
1616
*
1717
* @author Alexandre Salomé <[email protected]>
18-
*
19-
* @api
2018
*/
2119
class InvalidParameterException extends \InvalidArgumentException implements ExceptionInterface
2220
{

Exception/MethodNotAllowedException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* This exception should trigger an HTTP 405 response in your application code.
1818
*
1919
* @author Kris Wallsmith <[email protected]>
20-
*
21-
* @api
2220
*/
2321
class MethodNotAllowedException extends \RuntimeException implements ExceptionInterface
2422
{

Exception/MissingMandatoryParametersException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* mandatory parameters.
1717
*
1818
* @author Alexandre Salomé <[email protected]>
19-
*
20-
* @api
2119
*/
2220
class MissingMandatoryParametersException extends \InvalidArgumentException implements ExceptionInterface
2321
{

Exception/ResourceNotFoundException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* This exception should trigger an HTTP 404 response in your application code.
1818
*
1919
* @author Kris Wallsmith <[email protected]>
20-
*
21-
* @api
2220
*/
2321
class ResourceNotFoundException extends \RuntimeException implements ExceptionInterface
2422
{

Exception/RouteNotFoundException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Exception thrown when a route does not exist.
1616
*
1717
* @author Alexandre Salomé <[email protected]>
18-
*
19-
* @api
2018
*/
2119
class RouteNotFoundException extends \InvalidArgumentException implements ExceptionInterface
2220
{

Generator/Dumper/GeneratorDumperInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* GeneratorDumperInterface is the interface that all generator dumper classes must implement.
1818
*
1919
* @author Fabien Potencier <[email protected]>
20-
*
21-
* @api
2220
*/
2321
interface GeneratorDumperInterface
2422
{

Generator/Dumper/PhpGeneratorDumper.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
*
1717
* @author Fabien Potencier <[email protected]>
1818
* @author Tobias Schultze <http://tobion.de>
19-
*
20-
* @api
2119
*/
2220
class PhpGeneratorDumper extends GeneratorDumper
2321
{
@@ -32,8 +30,6 @@ class PhpGeneratorDumper extends GeneratorDumper
3230
* @param array $options An array of options
3331
*
3432
* @return string A PHP class representing the generator class
35-
*
36-
* @api
3733
*/
3834
public function dump(array $options = array())
3935
{

Generator/UrlGenerator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
*
2525
* @author Fabien Potencier <[email protected]>
2626
* @author Tobias Schultze <http://tobion.de>
27-
*
28-
* @api
2927
*/
3028
class UrlGenerator implements UrlGeneratorInterface, ConfigurableRequirementsInterface
3129
{
@@ -83,8 +81,6 @@ class UrlGenerator implements UrlGeneratorInterface, ConfigurableRequirementsInt
8381
* @param RouteCollection $routes A RouteCollection instance
8482
* @param RequestContext $context The context
8583
* @param LoggerInterface|null $logger A logger instance
86-
*
87-
* @api
8884
*/
8985
public function __construct(RouteCollection $routes, RequestContext $context, LoggerInterface $logger = null)
9086
{

Generator/UrlGeneratorInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
*
2929
* @author Fabien Potencier <[email protected]>
3030
* @author Tobias Schultze <http://tobion.de>
31-
*
32-
* @api
3331
*/
3432
interface UrlGeneratorInterface extends RequestContextAwareInterface
3533
{
@@ -81,8 +79,6 @@ interface UrlGeneratorInterface extends RequestContextAwareInterface
8179
* @throws MissingMandatoryParametersException When some parameters are missing that are mandatory for the route
8280
* @throws InvalidParameterException When a parameter value for a placeholder is not correct because
8381
* it does not match the requirement
84-
*
85-
* @api
8682
*/
8783
public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH);
8884
}

0 commit comments

Comments
 (0)