Skip to content

Commit 3e5ac4c

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix CS
2 parents 3dedffa + bfa53c8 commit 3e5ac4c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/DependencyInjection/FrameworkExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,7 @@ protected function createContainer(array $data = [])
16201620

16211621
protected function createContainerFromFile($file, $data = [], $resetCompilerPasses = true, $compile = true)
16221622
{
1623-
$cacheKey = md5(\get_class($this).$file.serialize($data));
1623+
$cacheKey = md5(static::class.$file.serialize($data));
16241624
if ($compile && isset(self::$containerCache[$cacheKey])) {
16251625
return self::$containerCache[$cacheKey];
16261626
}

Tests/Functional/AbstractWebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ protected static function createKernel(array $options = []): KernelInterface
6969

7070
protected static function getVarDir()
7171
{
72-
return 'FB'.substr(strrchr(\get_called_class(), '\\'), 1);
72+
return 'FB'.substr(strrchr(static::class, '\\'), 1);
7373
}
7474
}

0 commit comments

Comments
 (0)