diff options
Diffstat (limited to 'vendor/symfony/cache/Tests/CacheItemTest.php')
| -rw-r--r-- | vendor/symfony/cache/Tests/CacheItemTest.php | 4 |
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))(); } /** |
