diff --git a/app/bootstrap/app.php b/app/bootstrap/app.php index 2d6ce5e..f5b5919 100644 --- a/app/bootstrap/app.php +++ b/app/bootstrap/app.php @@ -14,4 +14,4 @@ $app = require APP_ROOT.'/vendor/xbb/core/bootstrap/app.php'; return $app->usePublicPath(APP_ROOT.'/public') ->useEnvironmentPath(APP_ROOT) ->useStoragePath(APP_ROOT.'/storage') - ->useBootstrapPath(__DIR__); \ No newline at end of file + ->useBootstrapPath(__DIR__); diff --git a/core/app/Livewire/Welcome.php b/core/app/Livewire/Welcome.php index efb3a1d..ee8f14e 100644 --- a/core/app/Livewire/Welcome.php +++ b/core/app/Livewire/Welcome.php @@ -55,7 +55,7 @@ class Welcome extends Component ]) ->sortBy([[...array_values($this->sortBy)]]) ->when($this->search, function (Collection $collection) { - return $collection->filter(fn(array $item) => str($item['name'])->contains($this->search, true)); + return $collection->filter(fn (array $item) => str($item['name'])->contains($this->search, true)); }); } diff --git a/core/database/migrations/0001_01_01_000000_create_users_table.php b/core/database/migrations/0001_01_01_000000_create_users_table.php index bf74a7f..ebc324b 100644 --- a/core/database/migrations/0001_01_01_000000_create_users_table.php +++ b/core/database/migrations/0001_01_01_000000_create_users_table.php @@ -4,8 +4,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; -return new class extends Migration -{ +return new class extends Migration { /** * Run the migrations. */ diff --git a/core/database/migrations/0001_01_01_000001_create_cache_table.php b/core/database/migrations/0001_01_01_000001_create_cache_table.php index b9c106b..1d3e5b4 100644 --- a/core/database/migrations/0001_01_01_000001_create_cache_table.php +++ b/core/database/migrations/0001_01_01_000001_create_cache_table.php @@ -4,8 +4,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; -return new class extends Migration -{ +return new class extends Migration { /** * Run the migrations. */ diff --git a/core/database/migrations/0001_01_01_000002_create_jobs_table.php b/core/database/migrations/0001_01_01_000002_create_jobs_table.php index 425e705..f3e3e2d 100644 --- a/core/database/migrations/0001_01_01_000002_create_jobs_table.php +++ b/core/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -4,8 +4,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; -return new class extends Migration -{ +return new class extends Migration { /** * Run the migrations. */ diff --git a/core/database/migrations/2024_08_23_224838_add_two_factor_columns_to_users_table.php b/core/database/migrations/2024_08_23_224838_add_two_factor_columns_to_users_table.php index b490e24..eb46a82 100644 --- a/core/database/migrations/2024_08_23_224838_add_two_factor_columns_to_users_table.php +++ b/core/database/migrations/2024_08_23_224838_add_two_factor_columns_to_users_table.php @@ -5,8 +5,7 @@ use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; use Laravel\Fortify\Fortify; -return new class extends Migration -{ +return new class extends Migration { /** * Run the migrations. */ diff --git a/core/database/migrations/2024_08_25_090910_create_features_table.php b/core/database/migrations/2024_08_25_090910_create_features_table.php index 9cec14d..e63e0e4 100644 --- a/core/database/migrations/2024_08_25_090910_create_features_table.php +++ b/core/database/migrations/2024_08_25_090910_create_features_table.php @@ -4,8 +4,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; -return new class extends Migration -{ +return new class extends Migration { /** * Run the migrations. *