8000 Fix CS · symfony/symfony@70b5137 · GitHub
[go: up one dir, main page]

Skip to content

Commit 70b5137

Browse files
committed
1 parent 7396707 commit 70b5137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Contracts/Tests/Cache/CacheTraitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function testRecomputeOnBetaInf()
9999
$cache->expects($this->once())
100100
->method('save');
101101

102-
$callback = fn(CacheItemInterface $item) => 'computed data';
102+
$callback = fn (CacheItemInterface $item) => 'computed data';
103103

104104
$cache->get('key', $callback, \INF);
105105
}
@@ -110,7 +110,7 @@ public function testExceptionOnNegativeBeta()
110110
->onlyMethods(['getItem', 'save'])
111111
->getMock();
112112

113-
$callback = fn(CacheItemInterface $item) => 'computed data';
113+
$callback = fn (CacheItemInterface $item) => 'computed data';
114114

115115
$this->expectException(\InvalidArgumentException::class);
116116
$cache->get('key', $callback, -2);

0 commit comments

Comments
 (0)
0