diff --git a/docs/using_tags.md b/docs/using_tags.md index 4e40861a..31ae35a0 100644 --- a/docs/using_tags.md +++ b/docs/using_tags.md @@ -159,7 +159,7 @@ For PHP usage, a few options exist _(autowirable classes of '@fos_http_cache.han * Using low level Tag handler to add tags manually. * WARNING: This FOS class name, and service name is different in v3 (FosHttpCache 2.x). * - * @var \FOS\HttpCacheBundle\Handler\TagHandler $tagHandler + * @var \FOS\HttpCache\Handler\TagHandler $tagHandler */ $tagHandler->addTags(['r33', 'r44']); diff --git a/src/DependencyInjection/Compiler/DriverPass.php b/src/DependencyInjection/Compiler/DriverPass.php index 2fd4796c..567bbd99 100644 --- a/src/DependencyInjection/Compiler/DriverPass.php +++ b/src/DependencyInjection/Compiler/DriverPass.php @@ -7,7 +7,7 @@ namespace EzSystems\PlatformHttpCacheBundle\DependencyInjection\Compiler; use EzSystems\PlatformHttpCacheBundle\Handler\ContentTagInterface; -use FOS\HttpCacheBundle\Handler\TagHandler as FOSTagHandler; +use FOS\HttpCache\Handler\TagHandler as FOSTagHandler; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder;