style: add void return type to postcodes migration closures

This commit is contained in:
Ovidiu U
2026-04-22 12:03:51 +01:00
parent 2fe9c3ef77
commit 7c114c72e4
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ return new class extends Migration
{
public function up(): void
{
Schema::create('outcodes', function (Blueprint $table) {
Schema::create('outcodes', function (Blueprint $table): void {
$table->string('outcode', 4)->primary();
$table->decimal('lat', 10, 7);
$table->decimal('lng', 10, 7);