$container->
removeDefinition(AbstractReverseProxyGateway::
class);
$container->
removeDefinition(FastlyReverseProxyGateway::
class);
$container->
removeDefinition(ReverseProxyCacheClearer::
class);
$container->
removeDefinition(FastlyReverseProxyGateway::
class);
return;
} $container->
removeDefinition(CacheStore::
class);
$container->
setAlias(CacheStore::
class, ReverseProxyCache::
class);
$container->
getAlias(CacheStore::
class)->
setPublic(true
);
if ($container->
getParameter('storefront.reverse_proxy.fastly.enabled'
)) { $container->
setAlias(AbstractReverseProxyGateway::
class, FastlyReverseProxyGateway::
class);
} elseif ($container->
getParameter('storefront.reverse_proxy.use_varnish_xkey'
)) { $container->
setAlias(AbstractReverseProxyGateway::
class, VarnishReverseProxyGateway::
class);
} }}