diff options
Diffstat (limited to 'vendor/symfony/http-kernel/HttpCache')
| -rw-r--r-- | vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php b/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php index 862bac557d..1efad607e8 100644 --- a/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php +++ b/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php @@ -215,7 +215,7 @@ class ResponseCacheStrategy implements ResponseCacheStrategyInterface } if (false !== $this->ageDirectives[$directive]) { - $value = $value - $age; + $value -= $age; $this->ageDirectives[$directive] = null !== $this->ageDirectives[$directive] ? min($this->ageDirectives[$directive], $value) : $value; } } |
