Skip to content

Commit 5fdfc7a

Browse files
committed
fix some deprecations and add upgrade instructions
1 parent 2b87f2f commit 5fdfc7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Test/WebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function doTearDown(): void
4040
protected static function createClient(array $options = [], array $server = [])
4141
{
4242
if (true === static::$booted) {
43-
@trigger_error(sprintf('Booting the kernel before calling %s::%s is deprecated and will throw in Symfony 5.0, the kernel should only be booted once.', __CLASS__, __METHOD__), E_USER_DEPRECATED);
43+
@trigger_error(sprintf('Booting the kernel before calling %s() is deprecated and will throw in Symfony 5.0, the kernel should only be booted once.', __METHOD__), E_USER_DEPRECATED);
4444
}
4545

4646
$kernel = static::bootKernel($options);

0 commit comments

Comments
 (0)