From 2b50da31f13a96f9f17eabae3c6a2ced25a8ac5a Mon Sep 17 00:00:00 2001 From: Dominik Ritter Date: Thu, 22 Jul 2021 20:31:07 +0200 Subject: [PATCH] Fix links to Proxies --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d01c9d..45300ae 100644 --- a/README.md +++ b/README.md @@ -233,7 +233,7 @@ $cache->opcache_reset(); ## Proxies CacheTool depends on `Proxies` to provide functionality, by default when creating a CacheTool instance from the factory -all proxies are enabled [`ApcuProxy`](https://github.com/gordalina/cachetool/blob/master/src/CacheTool/Proxy/ApcuProxy.php), [`OpcacheProxy`](https://github.com/gordalina/cachetool/blob/master/src/CacheTool/Proxy/OpcacheProxy.php) and [`PhpProxy`](https://github.com/gordalina/cachetool/blob/master/src/CacheTool/Proxy/PhpProxy.php), you can customize it or extend to your will like the example below: +all proxies are enabled [`ApcuProxy`](https://github.com/gordalina/cachetool/blob/master/src/Proxy/ApcuProxy.php), [`OpcacheProxy`](https://github.com/gordalina/cachetool/blob/master/src/Proxy/OpcacheProxy.php) and [`PhpProxy`](https://github.com/gordalina/cachetool/blob/master/src/Proxy/PhpProxy.php), you can customize it or extend to your will like the example below: ```php use CacheTool\Adapter\FastCGI;