diff --git a/src/Spryker/Shared/Router/RouterConstants.php b/src/Spryker/Shared/Router/RouterConstants.php index cdbfc94..9af91b3 100644 --- a/src/Spryker/Shared/Router/RouterConstants.php +++ b/src/Spryker/Shared/Router/RouterConstants.php @@ -53,8 +53,6 @@ interface RouterConstants public const BACKEND_GATEWAY_CACHE_PATH = 'ROUTER:BACKEND_GATEWAY_CACHE_PATH'; /** - * @deprecated Use {@link \Spryker\Shared\Router\RouterConstants::BACKOFFICE_IS_CACHE_ENABLED} instead. - * * Specification: * - If option set to true, the application will create a router cache on the first request of a route. * @@ -65,8 +63,6 @@ interface RouterConstants public const ZED_IS_CACHE_ENABLED = 'ROUTER:ZED_IS_CACHE_ENABLED'; /** - * @deprecated Use {@link \Spryker\Shared\Router\RouterConstants::BACKOFFICE_CACHE_PATH} instead. - * * Specification: * - Path to where the cache files should be written to. * diff --git a/src/Spryker/Zed/Router/Business/Router/RouterResource/RouterResource.php b/src/Spryker/Zed/Router/Business/Router/RouterResource/RouterResource.php index 71fbd95..a199e53 100644 --- a/src/Spryker/Zed/Router/Business/Router/RouterResource/RouterResource.php +++ b/src/Spryker/Zed/Router/Business/Router/RouterResource/RouterResource.php @@ -22,9 +22,6 @@ use Symfony\Component\Finder\Finder; use Symfony\Component\Finder\SplFileInfo; -/** - * @deprecated Use {@link \Spryker\Zed\Router\Business\Router\RouterResource\BackofficeRouterResource} instead. - */ class RouterResource implements ResourceInterface { /** diff --git a/src/Spryker/Zed/Router/Business/RouterBusinessFactory.php b/src/Spryker/Zed/Router/Business/RouterBusinessFactory.php index 886d411..0b3a001 100644 --- a/src/Spryker/Zed/Router/Business/RouterBusinessFactory.php +++ b/src/Spryker/Zed/Router/Business/RouterBusinessFactory.php @@ -233,8 +233,6 @@ public function createClosureLoader(): LoaderInterface } /** - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterBusinessFactory::createBackofficeChainRouter()} instead. - * * @return \Spryker\Zed\Router\Business\Router\ChainRouter */ public function createRouter(): ChainRouter @@ -243,8 +241,6 @@ public function createRouter(): ChainRouter } /** - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterBusinessFactory::getBackofficeRouterPlugins()} instead. - * * @return array<\Spryker\Zed\RouterExtension\Dependency\Plugin\RouterPluginInterface> */ public function getRouterPlugins(): array @@ -253,8 +249,6 @@ public function getRouterPlugins(): array } /** - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterBusinessFactory::createBackofficeRouter()} instead. - * * @return \Spryker\Zed\Router\Business\Router\RouterInterface */ public function createZedRouter(): RouterInterface @@ -268,8 +262,6 @@ public function createZedRouter(): RouterInterface } /** - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterBusinessFactory::getBackofficeRouterEnhancerPlugins()} instead. - * * @return array<\Spryker\Zed\RouterExtension\Dependency\Plugin\RouterEnhancerPluginInterface> */ public function getRouterEnhancerPlugins(): array @@ -291,8 +283,6 @@ public function createZedDevelopmentRouter(): RouterInterface } /** - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterBusinessFactory::createBackofficeCacheWarmer()} instead. - * * @return \Spryker\Shared\Router\Cache\CacheInterface */ public function createCache(): CacheInterface @@ -301,8 +291,6 @@ public function createCache(): CacheInterface } /** - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterBusinessFactory::createBackofficeRouterResource()} instead. - * * @return \Spryker\Zed\Router\Business\RouterResource\ResourceInterface */ public function createResource(): ResourceInterface diff --git a/src/Spryker/Zed/Router/Business/RouterFacadeInterface.php b/src/Spryker/Zed/Router/Business/RouterFacadeInterface.php index 13d25fa..5bdd978 100644 --- a/src/Spryker/Zed/Router/Business/RouterFacadeInterface.php +++ b/src/Spryker/Zed/Router/Business/RouterFacadeInterface.php @@ -141,8 +141,6 @@ public function warmUpBackendGatewayRouterCache(): void; * * @internal * - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterFacadeInterface::getBackofficeRouter()} instead. - * * Specification: * - Returns Router which handles Zed routes. * @@ -155,8 +153,6 @@ public function getZedRouter(): RouterInterface; * * @internal * - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterFacadeInterface::getBackofficeChainRouter()} instead. - * * Specification: * - Returns a ChainRouter which is added to the Application. * - Uses RouterExtensionPluginInterfaces to add Router to the ChainRouter. @@ -180,10 +176,6 @@ public function getZedFallbackRouter(): RouterInterface; /** * @api * - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterFacadeInterface::warmUpBackofficeRouterCache()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterFacadeInterface::warmUpBackendGatewayRouterCache()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\Business\RouterFacadeInterface::warmUpMerchantPortalRouterCache()} instead. - * * Specification: * - Builds the cache for the Router. * diff --git a/src/Spryker/Zed/Router/Communication/Plugin/Application/RouterApplicationPlugin.php b/src/Spryker/Zed/Router/Communication/Plugin/Application/RouterApplicationPlugin.php index 8599fed..2fb07b1 100644 --- a/src/Spryker/Zed/Router/Communication/Plugin/Application/RouterApplicationPlugin.php +++ b/src/Spryker/Zed/Router/Communication/Plugin/Application/RouterApplicationPlugin.php @@ -14,8 +14,6 @@ use Symfony\Component\HttpKernel\Controller\ArgumentResolver; /** - * @deprecated Use {@link \Spryker\Zed\Router\Communication\Plugin\Application\BackofficeRouterApplicationPlugin} instead. - * * @method \Spryker\Zed\Router\Business\RouterFacadeInterface getFacade() * @method \Spryker\Zed\Router\RouterConfig getConfig() * @method \Spryker\Zed\Router\Communication\RouterCommunicationFactory getFactory() diff --git a/src/Spryker/Zed/Router/Communication/Plugin/Console/RouterDebugZedConsole.php b/src/Spryker/Zed/Router/Communication/Plugin/Console/RouterDebugZedConsole.php index 465b0fa..5dfe99a 100644 --- a/src/Spryker/Zed/Router/Communication/Plugin/Console/RouterDebugZedConsole.php +++ b/src/Spryker/Zed/Router/Communication/Plugin/Console/RouterDebugZedConsole.php @@ -18,10 +18,6 @@ use Symfony\Component\Routing\RouteCollection; /** - * @deprecated Use {@link \Spryker\Zed\Router\Communication\Plugin\Console\RouterDebugBackofficeConsole} instead. - * @deprecated Use {@link \Spryker\Zed\Router\Communication\Plugin\Console\RouterDebugBackendGatewayConsole} instead. - * @deprecated Use {@link \Spryker\Zed\Router\Communication\Plugin\Console\RouterDebugBackendApiConsole} instead. - * * @method \Spryker\Zed\Router\Business\RouterFacadeInterface getFacade() * @method \Spryker\Zed\Router\Communication\RouterCommunicationFactory getFactory() */ diff --git a/src/Spryker/Zed/Router/RouterConfig.php b/src/Spryker/Zed/Router/RouterConfig.php index 49b0b42..56a325b 100644 --- a/src/Spryker/Zed/Router/RouterConfig.php +++ b/src/Spryker/Zed/Router/RouterConfig.php @@ -155,8 +155,6 @@ public function getBackendGatewayRouterCachePath(): string /** * @api * - * @deprecated Use {@link \Spryker\Zed\Router\RouterConfig::getBackofficeRouterConfiguration()} instead. - * * Specification: * - Returns a Router configuration which makes use of a Router cache. * @@ -193,8 +191,6 @@ public function getDevelopmentRouterConfiguration(): array } /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterConfig::getBackofficeCachePathIfCacheEnabled()} instead. - * * @return string|null */ protected function getCachePathIfCacheEnabled(): ?string diff --git a/src/Spryker/Zed/Router/RouterDependencyProvider.php b/src/Spryker/Zed/Router/RouterDependencyProvider.php index 3fe2461..4e05268 100644 --- a/src/Spryker/Zed/Router/RouterDependencyProvider.php +++ b/src/Spryker/Zed/Router/RouterDependencyProvider.php @@ -16,10 +16,6 @@ class RouterDependencyProvider extends AbstractBundleDependencyProvider { /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::PLUGINS_BACKOFFICE_ROUTER} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::PLUGINS_BACKEND_GATEWAY_ROUTER} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::PLUGINS_BACKEND_API_ROUTER} instead. - * * @var string */ public const ROUTER_PLUGINS = 'ROUTER_PLUGINS'; @@ -45,9 +41,6 @@ class RouterDependencyProvider extends AbstractBundleDependencyProvider public const PLUGINS_MERCHANT_PORTAL_ROUTER = 'PLUGINS_MERCHANT_PORTAL_ROUTER'; /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::PLUGINS_BACKOFFICE_ROUTER_ENHANCER} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::PLUGINS_BACKEND_GATEWAY_ROUTER_ENHANCER} instead. - * * @var string */ public const ROUTER_ENHANCER_PLUGINS = 'router enhancer plugin'; @@ -246,10 +239,6 @@ protected function getBackendApiRouterPlugins(): array } /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addBackofficeRouterPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addBackendGatewayRouterPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addBackendApiRouterPlugins()} instead. - * * @param \Spryker\Zed\Kernel\Container $container * * @return \Spryker\Zed\Kernel\Container @@ -264,10 +253,6 @@ protected function addRouterPlugins(Container $container): Container } /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::getBackofficeRouterPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::getBackendGatewayRouterPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::getBackendApiRouterPlugins()} instead. - * * @return array<\Spryker\Zed\RouterExtension\Dependency\Plugin\RouterPluginInterface> */ protected function getRouterPlugins(): array @@ -276,10 +261,6 @@ protected function getRouterPlugins(): array } /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addBackofficeRouterEnhancerPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addBackendGatewayRouterEnhancerPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addMerchantPortalRouterEnhancerPlugins()} instead. - * * @param \Spryker\Zed\Kernel\Container $container * * @return \Spryker\Zed\Kernel\Container @@ -294,10 +275,6 @@ protected function addRouterEnhancerPlugins(Container $container): Container } /** - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::getBackofficeRouterEnhancerPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::getBackendGatewayRouterEnhancerPlugins()} instead. - * @deprecated Use {@link \Spryker\Zed\Router\RouterDependencyProvider::addMerchantPortalRouterEnhancerPlugins()} instead. - * * @return array<\Spryker\Zed\RouterExtension\Dependency\Plugin\RouterEnhancerPluginInterface> */ protected function getRouterEnhancerPlugins(): array