Skip to content

Commit

Permalink
CS Fixing to align with the default laravel preset for Pint (#1472)
Browse files Browse the repository at this point in the history
  • Loading branch information
alidevweb authored Apr 22, 2024
1 parent 71fb94a commit b5f9783
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Get the migration connection name.
*/
public function getConnection(): string|null
public function getConnection(): ?string
{
return config('telescope.storage.database.connection');
}
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit b5f9783

Please sign in to comment.