Revert "Add return types to test methods"

This reverts commit 83fb6826ee.
This commit is contained in:
Marcus Moore
2024-08-06 13:30:34 -07:00
parent 95516b0343
commit 82e795b642
106 changed files with 498 additions and 498 deletions
@@ -20,7 +20,7 @@ final class EmailNotificationsUponCheckinTest extends TestCase
Notification::fake();
}
public function testCheckInEmailSentToUserIfSettingEnabled(): void
public function testCheckInEmailSentToUserIfSettingEnabled()
{
$user = User::factory()->create();
$asset = Asset::factory()->assignedToUser($user)->create();
@@ -37,7 +37,7 @@ final class EmailNotificationsUponCheckinTest extends TestCase
);
}
public function testCheckInEmailNotSentToUserIfSettingDisabled(): void
public function testCheckInEmailNotSentToUserIfSettingDisabled()
{
$user = User::factory()->create();
$asset = Asset::factory()->assignedToUser($user)->create();