Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2023-01-07 20:58:45 +00:00
parent e7c679405c
commit 16083484fd
330 changed files with 14915 additions and 14631 deletions

View File

@@ -2,8 +2,7 @@
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
return new class() extends Migration {
/**
* Run the migrations.
*
@@ -28,7 +27,7 @@ return new class extends Migration
if (Schema::hasTable('common_settings')) {
$settings = DB::table('common_settings')->where('option_name', 'itil')->first();
if (! $settings) {
if (!$settings) {
DB::table('common_settings')->insert(['option_name' => 'itil', 'status' => '0']);
}
}