From b5f9783c8e1ec3ec387b289d3ca8a8f85e76b4fb Mon Sep 17 00:00:00 2001 From: Ali ABOUSSEBABA Date: Mon, 22 Apr 2024 10:19:03 +0100 Subject: [PATCH] CS Fixing to align with the default laravel preset for Pint (#1472) --- .../2018_08_08_100000_create_telescope_entries_table.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/database/migrations/2018_08_08_100000_create_telescope_entries_table.php b/database/migrations/2018_08_08_100000_create_telescope_entries_table.php index 96b89699b..700a83f09 100644 --- a/database/migrations/2018_08_08_100000_create_telescope_entries_table.php +++ b/database/migrations/2018_08_08_100000_create_telescope_entries_table.php @@ -9,7 +9,7 @@ /** * Get the migration connection name. */ - public function getConnection(): string|null + public function getConnection(): ?string { return config('telescope.storage.database.connection'); } @@ -46,9 +46,9 @@ public function up(): void $table->index('tag'); $table->foreign('entry_uuid') - ->references('uuid') - ->on('telescope_entries') - ->onDelete('cascade'); + ->references('uuid') + ->on('telescope_entries') + ->onDelete('cascade'); }); $schema->create('telescope_monitoring', function (Blueprint $table) {