Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c612bfc

Browse files
minor #51120 [Mailer] fix deprecation versions (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- [Mailer] fix deprecation versions | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | Commits ------- 6000311 fix deprecation versions
2 parents ad72245 + 6000311 commit c612bfc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueApiTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* @author Yann LUCAS
3232
*
33-
* @deprecated since Symfony 6.3, use BrevoApiTransport instead
33+
* @deprecated since Symfony 6.4, use BrevoApiTransport instead
3434
*/
3535
final class SendinblueApiTransport extends AbstractApiTransport
3636
{

src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* @author Yann LUCAS
2020
*
21-
* @deprecated since Symfony 6.3, use BrevoApiTransport instead
21+
* @deprecated since Symfony 6.4, use BrevoSmtpTransport instead
2222
*/
2323
final class SendinblueSmtpTransport extends EsmtpTransport
2424
{

src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueTransportFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
/**
2121
* @author Yann LUCAS
2222
*
23-
* @deprecated since Symfony 6.3, use BrevoTransportFactory instead
23+
* @deprecated since Symfony 6.4, use BrevoTransportFactory instead
2424
*/
2525
final class SendinblueTransportFactory extends AbstractTransportFactory
2626
{
2727
public function create(Dsn $dsn): TransportInterface
2828
{
29-
trigger_deprecation('symfony/sendinblue-mailer', '6.3', 'The "%s" class is deprecated, use "%s" instead.', self::class, BrevoTransportFactory::class);
29+
trigger_deprecation('symfony/sendinblue-mailer', '6.4', 'The "%s" class is deprecated, use "%s" instead.', self::class, BrevoTransportFactory::class);
3030

3131
if (!\in_array($dsn->getScheme(), $this->getSupportedSchemes(), true)) {
3232
throw new UnsupportedSchemeException($dsn, 'sendinblue', $this->getSupportedSchemes());

0 commit comments

Comments
 (0)