From 3897cfdcf92c93da4ec80bbd3f87bb4a9baf51b5 Mon Sep 17 00:00:00 2001 From: Warxcell Date: Thu, 2 Sep 2021 22:07:30 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3e684ef..c7caa2d 100644 --- a/README.md +++ b/README.md @@ -671,7 +671,7 @@ class MyFactory implements \Arxy\FilesBundle\PathResolver\AzureBlobStorageSASPar alias: Arxy\FilesBundle\PathResolver\AzureBlobStorageSASPathResolver ``` -### SymfonyCachePathResolver: +### CachePathResolver: Used to cache the result from decorated Path Resolver. Useful for example in conjunction with AwsS3PathResolver, where to get the path to uploaded file, an API call is made. This resolver will cache the response from AWS S3 servers and @@ -684,13 +684,13 @@ Uses https://symfony.com/doc/current/components/cache.html $bucket: '%env(AWS_S3_BUCKET)%' $manager: '@Arxy\FilesBundle\ManagerInterface' - Arxy\FilesBundle\PathResolver\SymfonyCachePathResolver: + Arxy\FilesBundle\PathResolver\CachePathResolver: arguments: $pathResolver: '@Arxy\FilesBundle\PathResolver\AwsS3PathResolver' $cache: '@cache.app' Arxy\FilesBundle\PathResolver: - alias: Arxy\FilesBundle\PathResolver\SymfonyCachePathResolver + alias: Arxy\FilesBundle\PathResolver\CachePathResolver ``` ### DelegatingPathResolver: