Skip to content

Commit 42d4145

Browse files
committed
wip
1 parent 490cc25 commit 42d4145

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,6 @@ private function bootSlowQueryLogging()
8686
});
8787
}
8888

89-
/**
90-
* Register any application services.
91-
*/
92-
public function register(): void
93-
{
94-
//
95-
}
96-
9789
public function bootEvent(): void
9890
{
9991
User::observe(UserObserver::class);
@@ -112,4 +104,12 @@ public function bootPolicies(): void
112104
{
113105
Gate::policy(DatabaseNotification::class, NotificationPolicy::class);
114106
}
107+
108+
/**
109+
* Register any application services.
110+
*/
111+
public function register(): void
112+
{
113+
//
114+
}
115115
}

tests/Feature/NotificationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"A new reply was added to <a href=\"{$replyAbleRoute}\" class=\"text-lio-700\">\"{$thread->subject()}\"</a>.",
7575
))
7676
->assertDispatched('NotificationMarkedAsRead');
77-
})->only();
77+
});
7878

7979
test('a_non_logged_in_user_cannot_access_notifications', function () {
8080
Livewire::test(Notifications::class)->assertForbidden();

0 commit comments

Comments
 (0)