Skip to content

Commit 43f8081

Browse files
committed
minor #26225 Make deprecation notices less verbose (fabpot)
This PR was merged into the 4.1-dev branch. Discussion ---------- Make deprecation notices less verbose | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a I think there is no need to say that deprecated features will be removed in the next major version. That makes messages more verbose for no real reasons. Commits ------- 0c6ec3f made deprecation notices less verbose
2 parents 17d1054 + 0c6ec3f commit 43f8081

File tree

34 files changed

+93
-99
lines changed

34 files changed

+93
-99
lines changed

UPGRADE-4.1.md

+14-16
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,46 @@ Config
55
------
66

77
* Implementing `ParentNodeDefinitionInterface` without the `getChildNodeDefinitions()` method
8-
is deprecated and will be unsupported in 5.0.
8+
is deprecated.
99

1010
EventDispatcher
1111
---------------
1212

13-
* The `TraceableEventDispatcherInterface` has been deprecated and will be removed in 5.0.
13+
* The `TraceableEventDispatcherInterface` has been deprecated.
1414

1515
FrameworkBundle
1616
---------------
1717

18-
* A `RouterInterface` that does not implement the `WarmableInterface` is deprecated and will not be supported in Symfony 5.0.
19-
* The `RequestDataCollector` class has been deprecated and will be removed in Symfony 5.0. Use the `Symfony\Component\HttpKernel\DataCollector\RequestDataCollector` class instead.
18+
* A `RouterInterface` that does not implement the `WarmableInterface` is deprecated.
19+
* The `RequestDataCollector` class has been deprecated. Use the `Symfony\Component\HttpKernel\DataCollector\RequestDataCollector` class instead.
2020

2121
HttpFoundation
2222
--------------
2323

24-
* Passing the file size to the constructor of the `UploadedFile` class is deprecated and won't be
25-
supported anymore in 5.0.
24+
* Passing the file size to the constructor of the `UploadedFile` class is deprecated.
2625

2726
* The `getClientSize()` method of the `UploadedFile` class is deprecated. Use `getSize()` instead.
2827

2928
Security
3029
--------
3130

32-
* The `ContextListener::setLogoutOnUserChange()` method is deprecated and will be removed in 5.0.
31+
* The `ContextListener::setLogoutOnUserChange()` method is deprecated.
3332
* Using the `AdvancedUserInterface` is now deprecated. To use the existing
3433
functionality, create a custom user-checker based on the
35-
`Symfony\Component\Security\Core\User\UserChecker`. This functionality will
36-
be removed in Symfony 5.0.
34+
`Symfony\Component\Security\Core\User\UserChecker`.
3735

3836
SecurityBundle
3937
--------------
4038

41-
* The `logout_on_user_change` firewall option is deprecated and will be removed in 5.0.
42-
* The `SecurityUserValueResolver` class is deprecated and will be removed in 5.0, use
39+
* The `logout_on_user_change` firewall option is deprecated.
40+
* The `SecurityUserValueResolver` class is deprecated, use
4341
`Symfony\Component\Security\Http\Controller\UserValueResolver` instead.
4442

4543
Translation
4644
-----------
4745

48-
* The `FileDumper::setBackup()` method is deprecated and will be removed in 5.0.
49-
* The `TranslationWriter::disableBackup()` method is deprecated and will be removed in 5.0.
46+
* The `FileDumper::setBackup()` method is deprecated.
47+
* The `TranslationWriter::disableBackup()` method is deprecated.
5048

5149
TwigBundle
5250
----------
@@ -56,9 +54,9 @@ TwigBundle
5654
Validator
5755
--------
5856

59-
* The `Email::__construct()` 'strict' property is deprecated and will be removed in 5.0. Use 'mode'=>"strict" instead.
60-
* Calling `EmailValidator::__construct()` method with a boolean parameter is deprecated and will be removed in 5.0, use `EmailValidator("strict")` instead.
61-
* Deprecated the `checkDNS` and `dnsMessage` options of the `Url` constraint. They will be removed in 5.0.
57+
* The `Email::__construct()` 'strict' property is deprecated. Use 'mode'=>"strict" instead.
58+
* Calling `EmailValidator::__construct()` method with a boolean parameter is deprecated, use `EmailValidator("strict")` instead.
59+
* Deprecated the `checkDNS` and `dnsMessage` options of the `Url` constraint.
6260

6361
Workflow
6462
--------

src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ CHANGELOG
88
* Added a new `parameter_bag` service with related autowiring aliases to access parameters as-a-service
99
* Allowed the `Router` to work with any PSR-11 container
1010
* Added option in workflow dump command to label graph with a custom label
11-
* Using a `RouterInterface` that does not implement the `WarmableInterface` is deprecated and will not be supported in Symfony 5.0.
12-
* The `RequestDataCollector` class has been deprecated and will be removed in Symfony 5.0. Use the `Symfony\Component\HttpKernel\DataCollector\RequestDataCollector` class instead.
11+
* Using a `RouterInterface` that does not implement the `WarmableInterface` is deprecated.
12+
* The `RequestDataCollector` class has been deprecated. Use the `Symfony\Component\HttpKernel\DataCollector\RequestDataCollector` class instead.
1313
* The `RedirectController` class allows for 307/308 HTTP status codes
1414

1515
4.0.0

src/Symfony/Bundle/FrameworkBundle/DataCollector/RequestDataCollector.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313

1414
use Symfony\Component\HttpKernel\DataCollector\RequestDataCollector as BaseRequestDataCollector;
1515

16-
@trigger_error(sprintf('The "%s" class is deprecated since version 4.1 and will be removed in Symfony 5.0. Use %s instead.', RequestDataCollector::class, BaseRequestDataCollector::class), E_USER_DEPRECATED);
16+
@trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.1. Use %s instead.', RequestDataCollector::class, BaseRequestDataCollector::class), E_USER_DEPRECATED);
1717

1818
/**
1919
* RequestDataCollector.
2020
*
2121
* @author Jules Pietri <jusles@heahprod.com>
2222
*
23-
* @deprecated since version 4.1, to be removed in Symfony 5.0
23+
* @deprecated since Symfony 4.1
2424
*/
2525
class RequestDataCollector extends BaseRequestDataCollector
2626
{

src/Symfony/Bundle/FrameworkBundle/Resources/config/session.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
</service>
7171

7272
<service id="session.save_listener" class="Symfony\Component\HttpKernel\EventListener\SaveSessionListener">
73-
<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>
7474
</service>
7575

7676
<!-- for BC -->

src/Symfony/Bundle/SecurityBundle/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CHANGELOG
44
4.1.0
55
-----
66

7-
* The `logout_on_user_change` firewall option is deprecated and will be removed in 5.0.
7+
* The `logout_on_user_change` firewall option is deprecated.
88
* deprecated `SecurityUserValueResolver`, use
99
`Symfony\Component\Security\Http\Controller\UserValueResolver` instead.
1010

src/Symfony/Bundle/SecurityBundle/DependencyInjection/MainConfiguration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private function addFirewallsSection(ArrayNodeDefinition $rootNode, array $facto
200200
->booleanNode('logout_on_user_change')
201201
->defaultTrue()
202202
->info('When true, it will trigger a logout for the user if something has changed. Note: No-Op option since 4.0. Will always be true.')
203-
->setDeprecated('The "%path%.%node%" configuration key has been deprecated in Symfony 4.1 and will be removed in 5.0.')
203+
->setDeprecated('The "%path%.%node%" configuration key has been deprecated in Symfony 4.1.')
204204
->end()
205205
->arrayNode('logout')
206206
->treatTrueLike(array())

src/Symfony/Bundle/SecurityBundle/Resources/config/security.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
<!-- Provisioning -->
166166
<service id="security.user.provider.in_memory" class="Symfony\Component\Security\Core\User\InMemoryUserProvider" abstract="true" />
167167
<service id="security.user.provider.in_memory.user" class="Symfony\Component\Security\Core\User\User" abstract="true">
168-
<deprecated>The "%service_id%" service is deprecated since Symfony 4.1 and will be removed in 5.0.</deprecated>
168+
<deprecated>The "%service_id%" service is deprecated since Symfony 4.1.</deprecated>
169169
</service>
170170

171171
<service id="security.user.provider.ldap" class="Symfony\Component\Security\Core\User\LdapUserProvider" abstract="true">

src/Symfony/Bundle/SecurityBundle/SecurityUserValueResolver.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
use Symfony\Component\Security\Core\User\UserInterface;
2020
use Symfony\Component\Security\Http\Controller\UserValueResolver;
2121

22-
@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);
2323

2424
/**
2525
* Supports the argument type of {@see UserInterface}.
2626
*
2727
* @author Iltar van der Berg <kjarli@gmail.com>
2828
*
29-
* @deprecated since Symfony 4.1, to be removed in 5.0. Use {@link UserValueResolver} instead
29+
* @deprecated since Symfony 4.1, use {@link UserValueResolver} instead
3030
*/
3131
final class SecurityUserValueResolver implements ArgumentValueResolverInterface
3232
{

src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public function setPathSeparator(string $separator)
364364
$child->setPathSeparator($separator);
365365
}
366366
} 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);
368368
}
369369
}
370370

src/Symfony/Component/EventDispatcher/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CHANGELOG
66

77
* added support for invokable event listeners tagged with `kernel.event_listener` by default
88
* The `TraceableEventDispatcher::getOrphanedEvents()` method has been added.
9-
* The `TraceableEventDispatcherInterface` has been deprecated and will be removed in 5.0.
9+
* The `TraceableEventDispatcherInterface` has been deprecated.
1010

1111
4.0.0
1212
-----

src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcherInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
1515

1616
/**
17-
* @deprecated since version 4.1, will be removed in 5.0.
17+
* @deprecated since version 4.1
1818
*
1919
* @author Fabien Potencier <fabien@symfony.com>
2020
*/

src/Symfony/Component/HttpFoundation/CHANGELOG.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,12 @@ CHANGELOG
44
4.1.0
55
-----
66

7-
* Passing the file size to the constructor of the `UploadedFile` class is deprecated and won't be
8-
supported anymore in 5.0.
9-
7+
* Passing the file size to the constructor of the `UploadedFile` class is deprecated.
108
* The `getClientSize()` method of the `UploadedFile` class is deprecated. Use `getSize()` instead.
119
* added `RedisSessionHandler` to use Redis as a session storage
12-
13-
* The `get()` method of the `AcceptHeader` class now takes into account the
14-
`*` and `*/*` default values (if they are present in the Accept HTTP header)
15-
when looking for items.
10+
* The `get()` method of the `AcceptHeader` class now takes into account the
11+
`*` and `*/*` default values (if they are present in the Accept HTTP header)
12+
when looking for items.
1613

1714
4.0.0
1815
-----

src/Symfony/Component/HttpFoundation/File/UploadedFile.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function __construct(string $path, string $originalName, string $mimeType
5959
$this->mimeType = $mimeType ?: 'application/octet-stream';
6060

6161
if (4 < func_num_args() ? !is_bool($test) : null !== $error && @filesize($path) === $error) {
62-
@trigger_error(sprintf('Passing a size as 4th argument to the constructor of "%s" is deprecated since Symfony 4.1 and will be unsupported in 5.0.', __CLASS__), E_USER_DEPRECATED);
62+
@trigger_error(sprintf('Passing a size as 4th argument to the constructor of "%s" is deprecated since Symfony 4.1.', __CLASS__), E_USER_DEPRECATED);
6363
$error = $test;
6464
$test = 5 < func_num_args() ? func_get_arg(5) : false;
6565
}
@@ -145,13 +145,13 @@ public function guessClientExtension()
145145
* It is extracted from the request from which the file has been uploaded.
146146
* Then it should not be considered as a safe value.
147147
*
148-
* @deprecated since 4.1 will be removed in 5.0 use getSize() instead.
148+
* @deprecated since 4.1, use getSize() instead.
149149
*
150150
* @return int|null The file sizes
151151
*/
152152
public function getClientSize()
153153
{
154-
@trigger_error(sprintf('"%s" is deprecated since Symfony 4.1 and will be removed in 5.0. Use getSize() instead.', __METHOD__), E_USER_DEPRECATED);
154+
@trigger_error(sprintf('"%s" is deprecated since Symfony 4.1. Use getSize() instead.', __METHOD__), E_USER_DEPRECATED);
155155

156156
return $this->getSize();
157157
}

src/Symfony/Component/HttpFoundation/Tests/File/UploadedFileTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public function testGetSize()
195195

196196
/**
197197
* @group legacy
198-
* @expectedDeprecation Passing a size as 4th argument to the constructor of "Symfony\Component\HttpFoundation\File\UploadedFile" is deprecated since Symfony 4.1 and will be unsupported in 5.0.
198+
* @expectedDeprecation Passing a size as 4th argument to the constructor of "Symfony\Component\HttpFoundation\File\UploadedFile" is deprecated since Symfony 4.1.
199199
*/
200200
public function testConstructDeprecatedSize()
201201
{
@@ -213,7 +213,7 @@ public function testConstructDeprecatedSize()
213213

214214
/**
215215
* @group legacy
216-
* @expectedDeprecation Passing a size as 4th argument to the constructor of "Symfony\Component\HttpFoundation\File\UploadedFile" is deprecated since Symfony 4.1 and will be unsupported in 5.0.
216+
* @expectedDeprecation Passing a size as 4th argument to the constructor of "Symfony\Component\HttpFoundation\File\UploadedFile" is deprecated since Symfony 4.1.
217217
*/
218218
public function testConstructDeprecatedSizeWhenPassingOnlyThe4Needed()
219219
{

src/Symfony/Component/HttpKernel/EventListener/SaveSessionListener.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\HttpKernel\EventListener;
1313

14-
@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);
1515

1616
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
1717
use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
@@ -20,7 +20,7 @@
2020
/**
2121
* @author Tobias Schultze <http://tobion.de>
2222
*
23-
* @deprecated since Symfony 4.1, to be removed in 5.0. Use AbstractSessionListener instead.
23+
* @deprecated since Symfony 4.1, use AbstractSessionListener instead
2424
*/
2525
class SaveSessionListener implements EventSubscriberInterface
2626
{

src/Symfony/Component/Security/CHANGELOG.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ CHANGELOG
44
4.1.0
55
-----
66

7-
* The `ContextListener::setLogoutOnUserChange()` method is deprecated and will be removed in 5.0.
7+
* The `ContextListener::setLogoutOnUserChange()` method is deprecated.
88
* added `UserValueResolver`.
99
* Using the AdvancedUserInterface is now deprecated. To use the existing
1010
functionality, create a custom user-checker based on the
11-
`Symfony\Component\Security\Core\User\UserChecker`. This functionality will
12-
be removed in Symfony 5.0.
11+
`Symfony\Component\Security\Core\User\UserChecker`.
1312

1413
4.0.0
1514
-----

src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private function hasUserChanged(UserInterface $user)
261261
}
262262

263263
if ($this->user instanceof AdvancedUserInterface && $user instanceof 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 has been deprecated in 4.1. Implement the %s to check if the user has been changed,', __METHOD__, EquatableInterface::class), E_USER_DEPRECATED);
265265
if ($this->user->isAccountNonExpired() !== $user->isAccountNonExpired()) {
266266
return true;
267267
}
@@ -278,7 +278,7 @@ private function hasUserChanged(UserInterface $user)
278278
return true;
279279
}
280280
} elseif ($this->user instanceof AdvancedUserInterface xor $user instanceof AdvancedUserInterface) {
281-
@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 has been deprecated in 4.1. Implement the %s to check if the user has been changed,', __METHOD__, EquatableInterface::class), E_USER_DEPRECATED);
282282

283283
return true;
284284
}

src/Symfony/Component/Security/Core/Tests/User/UserCheckerTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testCheckPostAuthPass()
3232

3333
/**
3434
* @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.
3636
*/
3737
public function testCheckPostAuthPassAdvancedUser()
3838
{
@@ -55,7 +55,7 @@ public function testCheckPostAuthCredentialsExpired()
5555

5656
/**
5757
* @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.
5959
* @expectedException \Symfony\Component\Security\Core\Exception\CredentialsExpiredException
6060
*/
6161
public function testCheckPostAuthCredentialsExpiredAdvancedUser()
@@ -70,7 +70,7 @@ public function testCheckPostAuthCredentialsExpiredAdvancedUser()
7070

7171
/**
7272
* @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.
7474
*/
7575
public function testCheckPreAuthPassAdvancedUser()
7676
{
@@ -95,7 +95,7 @@ public function testCheckPreAuthAccountLocked()
9595

9696
/**
9797
* @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.
9999
* @expectedException \Symfony\Component\Security\Core\Exception\LockedException
100100
*/
101101
public function testCheckPreAuthAccountLockedAdvancedUser()
@@ -119,7 +119,7 @@ public function testCheckPreAuthDisabled()
119119

120120
/**
121121
* @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.
123123
* @expectedException \Symfony\Component\Security\Core\Exception\DisabledException
124124
*/
125125
public function testCheckPreAuthDisabledAdvancedUser()
@@ -144,7 +144,7 @@ public function testCheckPreAuthAccountExpired()
144144

145145
/**
146146
* @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.
148148
* @expectedException \Symfony\Component\Security\Core\Exception\AccountExpiredException
149149
*/
150150
public function testCheckPreAuthAccountExpiredAdvancedUser()

src/Symfony/Component/Security/Core/User/AdvancedUserInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* @see UserInterface
3434
* @see AccountStatusException
35-
* @deprecated since version 4.1, will be removed in 5.0.
35+
* @deprecated since version 4.1
3636
*
3737
* @author Fabien Potencier <fabien@symfony.com>
3838
*/

0 commit comments

Comments
 (0)