Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/validator/Mapping/Cache/Psr6Cache.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
19 * | 19 * |
20 * @author Kévin Dunglas <dunglas@gmail.com> | 20 * @author Kévin Dunglas <dunglas@gmail.com> |
21 */ | 21 */ |
22 class Psr6Cache implements CacheInterface | 22 class Psr6Cache implements CacheInterface |
23 { | 23 { |
24 /** | |
25 * @var CacheItemPoolInterface | |
26 */ | |
27 private $cacheItemPool; | 24 private $cacheItemPool; |
28 | 25 |
29 public function __construct(CacheItemPoolInterface $cacheItemPool) | 26 public function __construct(CacheItemPoolInterface $cacheItemPool) |
30 { | 27 { |
31 $this->cacheItemPool = $cacheItemPool; | 28 $this->cacheItemPool = $cacheItemPool; |