From 369bf1b96570fb357ad9fe0bb8182bd277ce8268 Mon Sep 17 00:00:00 2001 From: Saeed Vaziry Date: Sat, 23 Mar 2024 18:35:03 +0100 Subject: [PATCH] fix code style --- .../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 96b8969..700a83f 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) {