summaryrefslogtreecommitdiff
path: root/vendor/symfony/cache/Tests/CacheItemTest.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-01-07 16:45:05 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-01-07 16:45:05 +0000
commit5bcdfc98762e27505526568ee9ad3b742a00e726 (patch)
treecfd1cd634dec05f13acfc37df52cd735967c5f6d /vendor/symfony/cache/Tests/CacheItemTest.php
parent25366223eb30b309b137279bf74b779083e0a64e (diff)
downloadwebtrees-5bcdfc98762e27505526568ee9ad3b742a00e726.tar.gz
webtrees-5bcdfc98762e27505526568ee9ad3b742a00e726.tar.bz2
webtrees-5bcdfc98762e27505526568ee9ad3b742a00e726.zip
Update vendor dependencies
Diffstat (limited to 'vendor/symfony/cache/Tests/CacheItemTest.php')
-rw-r--r--vendor/symfony/cache/Tests/CacheItemTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/symfony/cache/Tests/CacheItemTest.php b/vendor/symfony/cache/Tests/CacheItemTest.php
index 6049f3ec9b..395c003bd3 100644
--- a/vendor/symfony/cache/Tests/CacheItemTest.php
+++ b/vendor/symfony/cache/Tests/CacheItemTest.php
@@ -62,9 +62,9 @@ class CacheItemTest extends TestCase
$this->assertSame($item, $item->tag('foo'));
$this->assertSame($item, $item->tag(array('bar', 'baz')));
- \call_user_func(\Closure::bind(function () use ($item) {
+ (\Closure::bind(function () use ($item) {
$this->assertSame(array('foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz'), $item->newMetadata[CacheItem::METADATA_TAGS]);
- }, $this, CacheItem::class));
+ }, $this, CacheItem::class))();
}
/**