Skip to content

Commit 8c1e8fe

Browse files
Merge branch '5.2' into 5.3
* 5.2: CS fix CS fix CS fixes Bump Symfony version to 5.2.12 Update VERSION for 5.2.11 Update CHANGELOG for 5.2.11 Bump Symfony version to 4.4.27 Update VERSION for 4.4.26 Update CONTRIBUTORS for 4.4.26 Update CHANGELOG for 4.4.26
2 parents 0e45ab1 + 62ede3f commit 8c1e8fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Session/Storage/SessionStorageFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
interface SessionStorageFactoryInterface
2020
{
2121
/**
22-
* Creates a new instance of SessionStorageInterface
22+
* Creates a new instance of SessionStorageInterface.
2323
*/
2424
public function createStorage(?Request $request): SessionStorageInterface;
2525
}

Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function setUp(): void
4040

4141
$r = new \ReflectionClass(\Memcached::class);
4242
$methodsToMock = array_map(function ($m) { return $m->name; }, $r->getMethods(\ReflectionMethod::IS_PUBLIC));
43-
$methodsToMock = array_diff($methodsToMock, ['getDelayed','getDelayedByKey']);
43+
$methodsToMock = array_diff($methodsToMock, ['getDelayed', 'getDelayedByKey']);
4444

4545
$this->memcached = $this->getMockBuilder(\Memcached::class)
4646
->disableOriginalConstructor()

0 commit comments

Comments
 (0)