Skip to content

Commit 28ff65d

Browse files
author
Thibault G
committed
fix: cs
1 parent 21ed4ba commit 28ff65d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Security/Csrf/Tests/SameOriginCsrfTokenManagerTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,13 @@ public function testPersistStrategyWithStartedSession()
214214
$sessionIsStarted = false;
215215

216216
$session->method('start')->willReturnCallback(function () use (&$sessionIsStarted): bool {
217-
$sessionIsStarted = true;
217+
$sessionIsStarted = true;
218218

219-
return true;
219+
return true;
220220
});
221221

222222
$session->method('isStarted')->willReturnCallback(function () use (&$sessionIsStarted): bool {
223-
return $sessionIsStarted;
223+
return $sessionIsStarted;
224224
});
225225

226226
$request = new Request();

0 commit comments

Comments
 (0)