Add return types to test methods

This commit is contained in:
Shift
2024-08-06 20:25:22 +00:00
parent b1e92ab866
commit 83fb6826ee
106 changed files with 498 additions and 498 deletions
@@ -20,7 +20,7 @@ class EmailNotificationsUponCheckinTest extends TestCase
Notification::fake();
}
public function testCheckInEmailSentToUserIfSettingEnabled()
public function testCheckInEmailSentToUserIfSettingEnabled(): void
{
$user = User::factory()->create();
$asset = Asset::factory()->assignedToUser($user)->create();
@@ -37,7 +37,7 @@ class EmailNotificationsUponCheckinTest extends TestCase
);
}
public function testCheckInEmailNotSentToUserIfSettingDisabled()
public function testCheckInEmailNotSentToUserIfSettingDisabled(): void
{
$user = User::factory()->create();
$asset = Asset::factory()->assignedToUser($user)->create();