mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
Add phpstan level 7(#544)
This commit is contained in:
@ -8,14 +8,14 @@
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('backups', function (Blueprint $table) {
|
||||
Schema::table('backups', function (Blueprint $table): void {
|
||||
$table->dropColumn('name');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('backups', function (Blueprint $table) {
|
||||
Schema::table('backups', function (Blueprint $table): void {
|
||||
$table->string('name')->nullable();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user