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('postcodes', function (Blueprint $table) {
Schema::create('postcodes', function (Blueprint $table): void {
$table->string('postcode', 7)->primary()->comment('Normalised: uppercase, no spaces');
$table->string('outcode', 4)->index();
$table->decimal('lat', 10, 7);