diff --git a/UPGRADE-4.1.md b/UPGRADE-4.1.md index b6b94be57aae2..274da2e1fe8e3 100644 --- a/UPGRADE-4.1.md +++ b/UPGRADE-4.1.md @@ -12,6 +12,11 @@ EventDispatcher * The `TraceableEventDispatcherInterface` has been deprecated and will be removed in 5.0. +FrameworkBundle +--------------- + + * A `RouterInterface` that does not implement the `WarmableInterface` is deprecated and will not be supported in Symfony 5.0. + HttpFoundation -------------- diff --git a/UPGRADE-5.0.md b/UPGRADE-5.0.md index d4d2a49d481f6..6383fb8932892 100644 --- a/UPGRADE-5.0.md +++ b/UPGRADE-5.0.md @@ -11,11 +11,15 @@ EventDispatcher * The `TraceableEventDispatcherInterface` has been removed. +FrameworkBundle +--------------- + + * Using a `RouterInterface` that does not implement the `WarmableInterface` is not supported anymore. + HttpFoundation -------------- * The `$size` argument of the `UploadedFile` constructor has been removed. - * The `getClientSize()` method of the `UploadedFile` class has been removed. Security diff --git a/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md b/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md index ee9de0a9291da..43f518570e926 100644 --- a/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md +++ b/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md @@ -7,8 +7,9 @@ CHANGELOG * Allowed to pass an optional `LoggerInterface $logger` instance to the `Router` * Added a new `parameter_bag` service with related autowiring aliases to access parameters as-a-service * Allowed the `Router` to work with any PSR-11 container - * added option in workflow dump command to label graph with a custom label - + * Added option in workflow dump command to label graph with a custom label + * Using a `RouterInterface` that does not implement the `WarmableInterface` is deprecated and will not be supported in Symfony 5.0. + 4.0.0 ----- diff --git a/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/RouterCacheWarmer.php b/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/RouterCacheWarmer.php index 5c360bc334409..9035bf7402932 100644 --- a/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/RouterCacheWarmer.php +++ b/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/RouterCacheWarmer.php @@ -45,7 +45,11 @@ public function warmUp($cacheDir) if ($router instanceof WarmableInterface) { $router->warmUp($cacheDir); + + return; } + + @trigger_error(sprintf('Passing a %s without implementing %s is deprecated since Symfony 4.1.', RouterInterface::class, WarmableInterface::class), \E_USER_DEPRECATED); } /** diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/RouterCacheWarmerTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/RouterCacheWarmerTest.php new file mode 100644 index 0000000000000..0515b30ad098d --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/RouterCacheWarmerTest.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Bundle\FrameworkBundle\Tests\CacheWarmer; + +use Psr\Container\ContainerInterface; +use Symfony\Bundle\FrameworkBundle\CacheWarmer\RouterCacheWarmer; +use PHPUnit\Framework\TestCase; +use Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface; +use Symfony\Component\Routing\RouterInterface; + +class RouterCacheWarmerTest extends TestCase +{ + public function testWarmUpWithWarmebleInterface() + { + $containerMock = $this->getMockBuilder(ContainerInterface::class)->setMethods(array('get', 'has'))->getMock(); + + $routerMock = $this->getMockBuilder(testRouterInterfaceWithWarmebleInterface::class)->setMethods(array('match', 'generate', 'getContext', 'setContext', 'getRouteCollection', 'warmUp'))->getMock(); + $containerMock->expects($this->any())->method('get')->with('router')->willReturn($routerMock); + $routerCacheWarmer = new RouterCacheWarmer($containerMock); + + $routerCacheWarmer->warmUp('/tmp'); + $routerMock->expects($this->any())->method('warmUp')->with('/tmp')->willReturn(''); + $this->addToAssertionCount(1); + } + + /** + * @expectedDeprecation Passing a Symfony\Component\Routing\RouterInterface without implementing Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface is deprecated since Symfony 4.1. + * @group legacy + */ + public function testWarmUpWithoutWarmebleInterface() + { + $containerMock = $this->getMockBuilder(ContainerInterface::class)->setMethods(array('get', 'has'))->getMock(); + + $routerMock = $this->getMockBuilder(testRouterInterfaceWithoutWarmebleInterface::class)->setMethods(array('match', 'generate', 'getContext', 'setContext', 'getRouteCollection'))->getMock(); + $containerMock->expects($this->any())->method('get')->with('router')->willReturn($routerMock); + $routerCacheWarmer = new RouterCacheWarmer($containerMock); + $routerCacheWarmer->warmUp('/tmp'); + } +} + +interface testRouterInterfaceWithWarmebleInterface extends RouterInterface, WarmableInterface +{ +} + +interface testRouterInterfaceWithoutWarmebleInterface extends RouterInterface +{ +} pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy