- Added missing escapeIdentifier() from the Adapter

This commit is contained in:
Dave Mc Nicoll 2024-11-13 14:07:14 -05:00
parent e945a7a9b2
commit 98c608dfba
1 changed files with 5 additions and 0 deletions

View File

@ -93,4 +93,9 @@ class Rest implements AdapterInterface
{ {
return $this->parameters; return $this->parameters;
} }
public function escapeIdentifier(string $segment, int $type): string
{
return $segment;
}
} }