Skip to content

Commit

Permalink
fix: string interpolation deprecation notice (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Jul 22, 2024
1 parent 4c8eed0 commit 97643df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/SetupCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private function loadData(string $file): Collection

try {
$content = json_decode(
File::get(database_path("seeders/data/${edition}/${file}.json")),
File::get(database_path("seeders/data/{$edition}/{$file}.json")),
true
);
} catch (Throwable $th) {
Expand Down

0 comments on commit 97643df

Please sign in to comment.