Add Larastan level 7 analysis
All checks were successful
Tests / Laravel tests (pull_request) Successful in 2m36s

This commit is contained in:
2026-06-03 22:09:33 +02:00
parent 53c4823b22
commit eb9c8796de
27 changed files with 341 additions and 71 deletions

View File

@@ -9,14 +9,14 @@ return new class extends Migration
/**
* Run the migrations.
*/
public function up()
public function up(): void
{
Schema::table('skills', function (Blueprint $table) {
$table->string('type')->default('rating')->after('id');
});
}
public function down()
public function down(): void
{
Schema::table('skills', function (Blueprint $table) {
$table->dropColumn('type');