We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ed4ba commit 28ff65dCopy full SHA for 28ff65d
src/Symfony/Component/Security/Csrf/Tests/SameOriginCsrfTokenManagerTest.php
@@ -214,13 +214,13 @@ public function testPersistStrategyWithStartedSession()
214
$sessionIsStarted = false;
215
216
$session->method('start')->willReturnCallback(function () use (&$sessionIsStarted): bool {
217
- $sessionIsStarted = true;
+ $sessionIsStarted = true;
218
219
- return true;
+ return true;
220
});
221
222
$session->method('isStarted')->willReturnCallback(function () use (&$sessionIsStarted): bool {
223
- return $sessionIsStarted;
+ return $sessionIsStarted;
224
225
226
$request = new Request();
0 commit comments