Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed Sep 7, 2024
1 parent 539e31c commit ce30976
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 39 deletions.
11 changes: 0 additions & 11 deletions src/Listeners/AttachMailLogUuid.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,6 @@

class AttachMailLogUuid
{
/**
* Create the event listener.
*/
public function __construct()
{
// ...
}

/**
* Handle the event.
*/
public function handle(MessageSending $event): void
{
(new AttachUuid)($event);
Expand Down
3 changes: 0 additions & 3 deletions src/Listeners/LogMailEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

class LogMailEvent
{
/**
* Handle the event.
*/
public function handle(MailEvent $event): void
{
$mail = MailProvider::with($event->provider)->getMailFromPayload($event->payload);
Expand Down
11 changes: 0 additions & 11 deletions src/Listeners/LogSendingMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,6 @@

class LogSendingMail
{
/**
* Create the event listener.
*/
public function __construct()
{
// ...
}

/**
* Handle the event.
*/
public function handle(MessageSending $event): void
{
(new LogMail)($event);
Expand Down
11 changes: 0 additions & 11 deletions src/Listeners/LogSentMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,6 @@

class LogSentMail
{
/**
* Create the event listener.
*/
public function __construct()
{
// ...
}

/**
* Handle the event.
*/
public function handle(MessageSent $event): void
{
(new LogMail)($event);
Expand Down
3 changes: 0 additions & 3 deletions src/Listeners/NotifyOnSpamComplaint.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ class NotifyOnSpamComplaint
{
use SendsNotifications;

/**
* Handle the event.
*/
public function handle(MailComplained $event): void
{
if (! $channels = config('mails.events.complaint.notify')) {
Expand Down

0 comments on commit ce30976

Please sign in to comment.