File tree 1 file changed +3
-3
lines changed
components/cache/adapters
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ This adapter allows combining any number of the other
12
12
fetched from the first adapter containing them and cache items are saved to all the
13
13
given adapters. This exposes a simple and efficient method for creating a layered cache.
14
14
15
- The ChainAdapter must be provided an array of adapters and optionally a maximum cache
15
+ The ChainAdapter must be provided an array of adapters and optionally a default cache
16
16
lifetime as its constructor arguments::
17
17
18
18
use Symfony\Component\Cache\Adapter\ChainAdapter;
@@ -21,8 +21,8 @@ lifetime as its constructor arguments::
21
21
// The ordered list of adapters used to fetch cached items
22
22
array $adapters,
23
23
24
- // The max lifetime of items propagated from lower adapters to upper ones
25
- $maxLifetime = 0
24
+ // The default lifetime of items propagated from lower adapters to upper ones
25
+ $defaultLifetime = 0
26
26
);
27
27
28
28
.. note ::
You can’t perform that action at this time.
0 commit comments