Use Laravel’s same return types

This commit is contained in:
Lance Pioch
2024-03-19 21:12:27 -04:00
parent f5269e7e5c
commit 29b3debee2
266 changed files with 641 additions and 637 deletions

View File

@@ -9,7 +9,7 @@ return new class extends Migration
/**
* Run the migrations.
*/
public function up()
public function up(): void
{
Schema::table('service_options', function (Blueprint $table) {
$table->text('script_install')->after('startup')->nullable();
@@ -22,7 +22,7 @@ return new class extends Migration
/**
* Reverse the migrations.
*/
public function down()
public function down(): void
{
Schema::table('service_options', function (Blueprint $table) {
$table->dropColumn('script_install');