minor #32662 [Security/Http] Don't mark AbstractAuthenticationListener as internal (nicolas-grekas)

This PR was merged into the 4.3 branch.

Discussion
----------

[Security/Http] Don't mark AbstractAuthenticationListener as internal

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

This class is documented as useful to build custom listeners, and some projects do.
There's no need to have it internal (its "handle" method is already marked as deprecated in LegacyListenerTrait)

Commits
-------

5a14b7e039 [Security/Http] Don't mark AbstractAuthenticationListener as internal
This commit is contained in:
Robin Chalas 2019-07-22 19:25:44 +02:00
commit f70430515d

View File

@ -48,8 +48,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*
* @internal since Symfony 4.3
*/
abstract class AbstractAuthenticationListener implements ListenerInterface
{