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
+2 -2
View File
@@ -6,7 +6,7 @@ use Tests\TestCase;
final class LocationTest extends TestCase
{
public function testPassesIfNotSelfParent(): void
public function testPassesIfNotSelfParent()
{
$a = Location::factory()->make([
'name' => 'Test Location',
@@ -17,7 +17,7 @@ final class LocationTest extends TestCase
$this->assertTrue($a->isValid());
}
public function testFailsIfSelfParent(): void
public function testFailsIfSelfParent()
{
$a = Location::factory()->make([
'name' => 'Test Location',