From 0d5072b9ebb4f1de2be73f28e548b7271c75733c Mon Sep 17 00:00:00 2001 From: Norman Huth Date: Sun, 10 Dec 2023 14:40:04 +0100 Subject: [PATCH] Removed deprecated and not used argument. (#49304) See: https://github.com/laravel/framework/blob/10.x/src/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php#L22 --- src/Illuminate/Foundation/Console/ModelMakeCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Illuminate/Foundation/Console/ModelMakeCommand.php b/src/Illuminate/Foundation/Console/ModelMakeCommand.php index b4a44dda701f..f4b4bd66df9e 100644 --- a/src/Illuminate/Foundation/Console/ModelMakeCommand.php +++ b/src/Illuminate/Foundation/Console/ModelMakeCommand.php @@ -110,7 +110,6 @@ protected function createMigration() $this->call('make:migration', [ 'name' => "create_{$table}_table", '--create' => $table, - '--fullpath' => true, ]); }