Skip to content

Commit

Permalink
Merge branch 'main' of github.com:spatie/laravel-ray
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Mar 8, 2025
2 parents 75d3b63 + 8c28f74 commit 429fe9e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/Ray.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
use Spatie\LaravelRay\Watchers\HttpClientWatcher;
use Spatie\LaravelRay\Watchers\InsertQueryWatcher;
use Spatie\LaravelRay\Watchers\JobWatcher;
use Spatie\LaravelRay\Watchers\LoggedMailWatcher;
use Spatie\LaravelRay\Watchers\MailWatcher;
use Spatie\LaravelRay\Watchers\QueryWatcher;
use Spatie\LaravelRay\Watchers\RequestWatcher;
Expand Down
2 changes: 1 addition & 1 deletion src/Watchers/MailWatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function registerMessageSendingEventListener(): void
Event::listen([
MessageSending::class,
], function (MessageSending $event) {
if (!$this->enabled()) {
if (! $this->enabled()) {
return;
}

Expand Down
1 change: 0 additions & 1 deletion tests/Unit/MailableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Mail;
use Spatie\LaravelRay\Tests\TestClasses\TestMailable;
use Spatie\LaravelRay\Watchers\MailWatcher;

it('can send the mailable payload', function () {
ray()->mailable(new TestMailable());
Expand Down

0 comments on commit 429fe9e

Please sign in to comment.