Using symfony 6.2 and version 2.0.0 of this bundle (secit-pl/imap-bundle), I am getting these deprecations:
The "Symfony\Component\Console\Command\Command::$defaultName" property is considered final. You should not override it in "SecIT\ImapBundle\Command\ValidateConnectionsCommand".
The "Symfony\Component\Console\Command\Command::$defaultDescription" property is considered final. You should not override it in "SecIT\ImapBundle\Command\ValidateConnectionsCommand".
Since symfony/console 6.1: Relying on the static property "$defaultName" for setting a command name is deprecated. Add the "Symfony\Component\Console\Attribute\AsCommand" attribute to the "SecIT\ImapBundle\Command\ValidateConnectionsCommand" class instead.
Since symfony/console 6.1: Relying on the static property "$defaultDescription" for setting a command description is deprecated. Add the "Symfony\Component\Console\Attribute\AsCommand" attribute to the "SecIT\ImapBundle\Command\ValidateConnectionsCommand" class instead.
Using symfony 6.2 and version 2.0.0 of this bundle (secit-pl/imap-bundle), I am getting these deprecations:
Thank you