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
+3 -3
View File
@@ -9,7 +9,7 @@ use Tests\TestCase;
final class ComponentTest extends TestCase
{
public function testAComponentBelongsToACompany(): void
public function testAComponentBelongsToACompany()
{
$component = Component::factory()
->create(
@@ -20,14 +20,14 @@ final class ComponentTest extends TestCase
$this->assertInstanceOf(Company::class, $component->company);
}
public function testAComponentHasALocation(): void
public function testAComponentHasALocation()
{
$component = Component::factory()
->create(['location_id' => Location::factory()->create()->id]);
$this->assertInstanceOf(Location::class, $component->location);
}
public function testAComponentBelongsToACategory(): void
public function testAComponentBelongsToACategory()
{
$component = Component::factory()->ramCrucial4()
->create(