Adopt Laravel type hints

This commit is contained in:
Shift
2025-07-10 18:54:07 +00:00
parent 53f28b5056
commit 968a5823a1

View File

@@ -11,7 +11,7 @@ return new class extends Migration
*
* @return void
*/
public function up()
public function up(): void
{
Schema::table('items', function (Blueprint $table) {
$table->text('role')->nullable();
@@ -23,7 +23,7 @@ return new class extends Migration
*
* @return void
*/
public function down()
public function down(): void
{
Schema::table('items', function (Blueprint $table) {
//