aboutsummaryrefslogtreecommitdiff
path: root/caches/SQLiteCache.php
diff options
context:
space:
mode:
Diffstat (limited to 'caches/SQLiteCache.php')
-rw-r--r--caches/SQLiteCache.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/caches/SQLiteCache.php b/caches/SQLiteCache.php
index beb33e88..09689566 100644
--- a/caches/SQLiteCache.php
+++ b/caches/SQLiteCache.php
@@ -2,6 +2,10 @@
declare(strict_types=1);
+/**
+ * The storage table has a column `updated` which is incorrectly named.
+ * It should have been named `expiration` and the code treats it as an expiration date (in unix timestamp)
+ */
class SQLiteCache implements CacheInterface
{
private \SQLite3 $db;