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