minor #35600 [Messenger] Made final class really final (lyrixx)

This PR was merged into the 5.1-dev branch.

Discussion
----------

[Messenger] Made final class really final

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        |

introduced in #35485 (so no BC break)

Commits
-------

cd8a386284 [Messenger] Made final class really final
This commit is contained in:
Robin Chalas 2020-02-05 13:01:01 +01:00
commit 0b8adc99a7

View File

@ -15,11 +15,10 @@ namespace Symfony\Component\Messenger\Bridge\Doctrine\Transport;
* Uses PostgreSQL LISTEN/NOTIFY to push messages to workers.
*
* @internal
* @final
*
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class PostgreSqlConnection extends Connection
final class PostgreSqlConnection extends Connection
{
/**
* * use_notify: Set to false to disable the use of LISTEN/NOTIFY. Default: true