Skip to content

Commit

Permalink
Fix escaping.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 30, 2024
1 parent fd4ee78 commit 1fa6946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/BakeSimpleMigrationCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function fileName($name): string
/** @psalm-suppress PossiblyNullArgument */
$path = $this->getPath($this->args);
$offset = 0;
while (glob($path . $timestamp . '_*\\.php')) {
while (glob($path . $timestamp . '_*.php')) {
$timestamp = Util::getCurrentTimestamp(++$offset);
}

Expand Down

0 comments on commit 1fa6946

Please sign in to comment.