summaryrefslogtreecommitdiff
path: root/vendor/symfony/cache/Tests
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-03-06 10:34:32 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-03-06 10:34:32 +0000
commitd250673fd02596cce82a1fbc789be57c0f4bf3fd (patch)
tree20f32eb94c00fd78052da031b27fcc516c26f85a /vendor/symfony/cache/Tests
parent9c811d4799f06f28d9bfb1399c2ffa6bab93c682 (diff)
downloadwebtrees-d250673fd02596cce82a1fbc789be57c0f4bf3fd.tar.gz
webtrees-d250673fd02596cce82a1fbc789be57c0f4bf3fd.tar.bz2
webtrees-d250673fd02596cce82a1fbc789be57c0f4bf3fd.zip
Update vendor dependencies
Diffstat (limited to 'vendor/symfony/cache/Tests')
-rw-r--r--vendor/symfony/cache/Tests/Adapter/AdapterTestCase.php2
-rw-r--r--vendor/symfony/cache/Tests/Simple/CacheTestCase.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/symfony/cache/Tests/Adapter/AdapterTestCase.php b/vendor/symfony/cache/Tests/Adapter/AdapterTestCase.php
index 8a7d147808..0eceb6e572 100644
--- a/vendor/symfony/cache/Tests/Adapter/AdapterTestCase.php
+++ b/vendor/symfony/cache/Tests/Adapter/AdapterTestCase.php
@@ -22,7 +22,7 @@ abstract class AdapterTestCase extends CachePoolTest
{
parent::setUp();
- if (!array_key_exists('testPrune', $this->skippedTests) && !$this->createCachePool() instanceof PruneableInterface) {
+ if (!\array_key_exists('testPrune', $this->skippedTests) && !$this->createCachePool() instanceof PruneableInterface) {
$this->skippedTests['testPrune'] = 'Not a pruneable cache pool.';
}
}
diff --git a/vendor/symfony/cache/Tests/Simple/CacheTestCase.php b/vendor/symfony/cache/Tests/Simple/CacheTestCase.php
index 1a13cbaae8..3c8824869b 100644
--- a/vendor/symfony/cache/Tests/Simple/CacheTestCase.php
+++ b/vendor/symfony/cache/Tests/Simple/CacheTestCase.php
@@ -21,7 +21,7 @@ abstract class CacheTestCase extends SimpleCacheTest
{
parent::setUp();
- if (!array_key_exists('testPrune', $this->skippedTests) && !$this->createSimpleCache() instanceof PruneableInterface) {
+ if (!\array_key_exists('testPrune', $this->skippedTests) && !$this->createSimpleCache() instanceof PruneableInterface) {
$this->skippedTests['testPrune'] = 'Not a pruneable cache pool.';
}
}