diff --git a/src/Bus/UncachedPersistentBusFake.php b/src/Bus/UncachedPersistentBusFake.php index 3e7eb88..a76a4ad 100644 --- a/src/Bus/UncachedPersistentBusFake.php +++ b/src/Bus/UncachedPersistentBusFake.php @@ -11,9 +11,7 @@ class UncachedPersistentBusFake { use ForwardsCalls; - public function __construct(private PersistentBusFake $fake) - { - } + public function __construct(private PersistentBusFake $fake) {} /** * Handle dynamic method calls into the fake. diff --git a/src/Mails/UncachedPersistentMailFake.php b/src/Mails/UncachedPersistentMailFake.php index 1736768..015c8d0 100644 --- a/src/Mails/UncachedPersistentMailFake.php +++ b/src/Mails/UncachedPersistentMailFake.php @@ -11,9 +11,7 @@ class UncachedPersistentMailFake { use ForwardsCalls; - public function __construct(private PersistentMailFake $fake) - { - } + public function __construct(private PersistentMailFake $fake) {} /** * Handle dynamic method calls into the fake. diff --git a/src/Notifications/UncachedPersistentNotificationFake.php b/src/Notifications/UncachedPersistentNotificationFake.php index b411101..9d5454e 100644 --- a/src/Notifications/UncachedPersistentNotificationFake.php +++ b/src/Notifications/UncachedPersistentNotificationFake.php @@ -11,9 +11,7 @@ class UncachedPersistentNotificationFake { use ForwardsCalls; - public function __construct(private PersistentNotificationFake $fake) - { - } + public function __construct(private PersistentNotificationFake $fake) {} /** * Handle dynamic method calls into the fake. diff --git a/src/Queue/UncachedPersistentQueueFake.php b/src/Queue/UncachedPersistentQueueFake.php index 68082b3..a25dbb3 100644 --- a/src/Queue/UncachedPersistentQueueFake.php +++ b/src/Queue/UncachedPersistentQueueFake.php @@ -11,9 +11,7 @@ class UncachedPersistentQueueFake { use ForwardsCalls; - public function __construct(private PersistentQueueFake $fake) - { - } + public function __construct(private PersistentQueueFake $fake) {} /** * Handle dynamic method calls into the fake. diff --git a/tests/DummyMail.php b/tests/DummyMail.php index 8ab04ac..75b622e 100644 --- a/tests/DummyMail.php +++ b/tests/DummyMail.php @@ -4,6 +4,4 @@ use Illuminate\Mail\Mailable; -class DummyMail extends Mailable -{ -} +class DummyMail extends Mailable {} diff --git a/tests/DummyNotification.php b/tests/DummyNotification.php index f8d87d9..12ab792 100644 --- a/tests/DummyNotification.php +++ b/tests/DummyNotification.php @@ -11,7 +11,5 @@ public function via() return ['mail']; } - public function toMail() - { - } + public function toMail() {} }