From 15a81333961431ac23b5727b6991f19c80e98d9b Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Mon, 9 Dec 2019 08:36:36 +0100 Subject: [PATCH 1/2] build with php 7.4 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 61ab88d..015fc22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ php: - 7.1 - 7.2 - 7.3 + - 7.4 env: global: From 0b3e08b9206e2976b0fea6743c289cfce3d8d631 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Mon, 9 Dec 2019 08:36:41 +0100 Subject: [PATCH 2/2] improve phpdoc --- src/CachePlugin.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CachePlugin.php b/src/CachePlugin.php index 805d361..f637689 100644 --- a/src/CachePlugin.php +++ b/src/CachePlugin.php @@ -17,7 +17,9 @@ use Symfony\Component\OptionsResolver\OptionsResolver; /** - * Allow for caching a response. + * Allow for caching a response with a PSR-6 compatible caching engine. + * + * It can follow the RFC-7234 caching specification or use a fixed cache lifetime. * * @author Tobias Nyholm */