style: apply additional linting fixes across the codebase

This commit is contained in:
Developer
2026-07-02 12:50:59 +08:00
parent f517b77377
commit 7745a57e84
26 changed files with 171 additions and 111 deletions

View File

@@ -3,12 +3,14 @@
namespace Tests\Feature\Api\V1\DropOff;
use App\Models\DropOffPoint;
use App\Models\Household;
use App\Models\User;
use Database\Seeders\RoleSeeder;
use Database\Seeders\SampleDropOffPointsSeeder;
use Database\Seeders\SamplePsgcSeeder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Laravel\Sanctum\Sanctum;
use MatanYadaev\EloquentSpatial\Objects\Point;
use Tests\TestCase;
class DropOffPointTest extends TestCase
@@ -160,12 +162,12 @@ class DropOffPointTest extends TestCase
$dop1 = DropOffPoint::where('status', DropOffPoint::STATUS_ACTIVE)->first();
$household = \App\Models\Household::create([
$household = Household::create([
'tenant_id' => $dop1->tenant_id,
'head_user_id' => User::factory()->create()->id,
'barangay_id' => $dop1->barangay_id,
'address_line' => '123 Test St',
'coordinates' => new \MatanYadaev\EloquentSpatial\Objects\Point(14.6539, 121.0685, 4326),
'coordinates' => new Point(14.6539, 121.0685, 4326),
'household_size' => 3,
'assigned_drop_off_point_id' => $dop1->id,
'verification_status' => 'approved',