Skip to content

Commit

Permalink
TASK: Make MailerIntercace public
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbelasichon committed Jan 16, 2024
1 parent 5638e2c commit c7f5f38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Configuration/Services.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class_alias(
->public();

$services->alias(SymfonyMailerInterface::class, MessengerMailer::class);
$services->alias(\TYPO3\CMS\Core\Mail\MailerInterface::class, MessengerMailer::class);
$services->alias(\TYPO3\CMS\Core\Mail\MailerInterface::class, MessengerMailer::class)->public();
$services->set('mailer.logger_message_listener', MessageLoggerListener::class)
->tag('event.listener', [
'method' => 'onMessage',
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '2.0.0',
'version' => '2.0.1',
'constraints' => [
'depends' => [
'typo3' => '10.4.0-12.9.99',
Expand Down

0 comments on commit c7f5f38

Please sign in to comment.