Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Sep 3, 2024
1 parent 1d9acc0 commit 8ed1c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Schema/Quoter.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function getTableNameParts(string $name): array
{
$parts = array_slice(explode('.', $name), -2, 2);

return array_map($this->unquoteSimpleTableName(...), $parts);
return array_map([$this, 'unquoteSimpleTableName'], $parts);
}

public function ensureNameQuoted(string $name): string
Expand Down

0 comments on commit 8ed1c37

Please sign in to comment.