You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@trigger_error('The "framework.validation.strict_email" configuration key has been deprecated in Symfony 4.1. Use the "framework.validation.email_validation_mode" configuration key instead.', E_USER_DEPRECATED);
662
+
@trigger_error('The "framework.validation.strict_email" configuration key is deprecated since Symfony 4.1. Use the "framework.validation.email_validation_mode" configuration key instead.', E_USER_DEPRECATED);
<deprecated>The "%service_id%" service is deprecated since Symfony 4.1 and will be removed in 5.0. Use the "session_listener" service instead.</deprecated>
73
+
<deprecated>The "%service_id%" service is deprecated since Symfony 4.1. Use the "session_listener" service instead.</deprecated>
Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public function testGetControllerOnContainerAwareInvokable()
52
52
53
53
/**
54
54
* @group legacy
55
-
* @expectedDeprecation Referencing controllers with FooBundle:Default:test is deprecated since version 4.1 and will be removed in 5.0. Use Symfony\Bundle\FrameworkBundle\Tests\Controller\ContainerAwareController::testAction instead.
55
+
* @expectedDeprecation Referencing controllers with FooBundle:Default:test is deprecated since Symfony 4.1. Use Symfony\Bundle\FrameworkBundle\Tests\Controller\ContainerAwareController::testAction instead.
@trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.1 and will be removed in 5.0, use "%s" instead.', SecurityUserValueResolver::class, UserValueResolver::class), E_USER_DEPRECATED);
22
+
@trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.1. Use "%s" instead.', SecurityUserValueResolver::class, UserValueResolver::class), E_USER_DEPRECATED);
23
23
24
24
/**
25
25
* Supports the argument type of {@see UserInterface}.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -364,7 +364,7 @@ public function setPathSeparator(string $separator)
364
364
$child->setPathSeparator($separator);
365
365
}
366
366
} else {
367
-
@trigger_error('Passing a ParentNodeDefinitionInterface without getChildNodeDefinitions() is deprecated since version 4.1 and will be removed in 5.0.', E_USER_DEPRECATED);
367
+
@trigger_error('Passing a ParentNodeDefinitionInterface without getChildNodeDefinitions() is deprecated since Symfony 4.1.', E_USER_DEPRECATED);
@trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.1 and will be removed in 5.0. Use AbstractSessionListener instead.', SaveSessionListener::class), E_USER_DEPRECATED);
14
+
@trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.1. Use AbstractSessionListener instead.', SaveSessionListener::class), E_USER_DEPRECATED);
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ class ContainerControllerResolverTest extends ControllerResolverTest
22
22
{
23
23
/**
24
24
* @group legacy
25
-
* @expectedDeprecation Referencing controllers with a single colon is deprecated since version 4.1 and will be removed in 5.0. Use foo::action instead.
25
+
* @expectedDeprecation Referencing controllers with a single colon is deprecated since Symfony 4.1. Use foo::action instead.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Routing/Tests/Loader/ObjectRouteLoaderTest.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ class ObjectRouteLoaderTest extends TestCase
20
20
{
21
21
/**
22
22
* @group legacy
23
-
* @expectedDeprecation Referencing service route loaders with a single colon is deprecated since version 4.1 and will be removed in 5.0. Use my_route_provider_service::loadRoutes instead.
23
+
* @expectedDeprecation Referencing service route loaders with a single colon is deprecated since Symfony 4.1. Use my_route_provider_service::loadRoutes instead.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php
+2-2
Original file line number
Diff line number
Diff line change
@@ -261,7 +261,7 @@ private function hasUserChanged(UserInterface $user)
261
261
}
262
262
263
263
if ($this->userinstanceof AdvancedUserInterface && $userinstanceof AdvancedUserInterface) {
264
-
@trigger_error(sprintf('Checking for the AdvancedUserInterface in %s has been deprecated in 4.1 and will be removed in 5.0. Implement the %s to check if the user has been changed,', __METHOD__, EquatableInterface::class), E_USER_DEPRECATED);
264
+
@trigger_error(sprintf('Checking for the AdvancedUserInterface in %s is deprecated since Symfony 4.1. Implement the %s to check if the user has been changed,', __METHOD__, EquatableInterface::class), E_USER_DEPRECATED);
265
265
if ($this->user->isAccountNonExpired() !== $user->isAccountNonExpired()) {
266
266
returntrue;
267
267
}
@@ -278,7 +278,7 @@ private function hasUserChanged(UserInterface $user)
@trigger_error(sprintf('Checking for the AdvancedUserInterface in %s has been deprecated in 4.1 and will be removed in 5.0. Implement the %s to check if the user has been changed,', __METHOD__, EquatableInterface::class), E_USER_DEPRECATED);
281
+
@trigger_error(sprintf('Checking for the AdvancedUserInterface in %s is deprecated since Symfony 4.1. Implement the %s to check if the user has been changed,', __METHOD__, EquatableInterface::class), E_USER_DEPRECATED);
Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Core/Tests/User/UserCheckerTest.php
+6-6
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ public function testCheckPostAuthPass()
32
32
33
33
/**
34
34
* @group legacy
35
-
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPostAuth with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.
35
+
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPostAuth with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.
36
36
*/
37
37
publicfunctiontestCheckPostAuthPassAdvancedUser()
38
38
{
@@ -55,7 +55,7 @@ public function testCheckPostAuthCredentialsExpired()
55
55
56
56
/**
57
57
* @group legacy
58
-
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPostAuth with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.
58
+
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPostAuth with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.
@@ -70,7 +70,7 @@ public function testCheckPostAuthCredentialsExpiredAdvancedUser()
70
70
71
71
/**
72
72
* @group legacy
73
-
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.
73
+
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.
74
74
*/
75
75
publicfunctiontestCheckPreAuthPassAdvancedUser()
76
76
{
@@ -95,7 +95,7 @@ public function testCheckPreAuthAccountLocked()
95
95
96
96
/**
97
97
* @group legacy
98
-
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.
98
+
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.
@@ -119,7 +119,7 @@ public function testCheckPreAuthDisabled()
119
119
120
120
/**
121
121
* @group legacy
122
-
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.
122
+
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.
@@ -144,7 +144,7 @@ public function testCheckPreAuthAccountExpired()
144
144
145
145
/**
146
146
* @group legacy
147
-
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.
147
+
* @expectedDeprecation Calling Symfony\Component\Security\Core\User\UserChecker::checkPreAuth with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Core/User/UserChecker.php
+2-2
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ public function checkPreAuth(UserInterface $user)
33
33
}
34
34
35
35
if ($userinstanceof AdvancedUserInterface && !$userinstanceof User) {
36
-
@trigger_error(sprintf('Calling %s with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.', __METHOD__), E_USER_DEPRECATED);
36
+
@trigger_error(sprintf('Calling %s with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.', __METHOD__), E_USER_DEPRECATED);
37
37
}
38
38
39
39
if (!$user->isAccountNonLocked()) {
@@ -65,7 +65,7 @@ public function checkPostAuth(UserInterface $user)
65
65
}
66
66
67
67
if ($userinstanceof AdvancedUserInterface && !$userinstanceof User) {
68
-
@trigger_error(sprintf('Calling %s with an AdvancedUserInterface is deprecated as of 4.1 and will be removed in 5.0. Create a custom user checker if you wish to keep this functionality.', __METHOD__), E_USER_DEPRECATED);
68
+
@trigger_error(sprintf('Calling %s with an AdvancedUserInterface is deprecated since Symfony 4.1. Create a custom user checker if you wish to keep this functionality.', __METHOD__), E_USER_DEPRECATED);
0 commit comments