diff --git a/src/Adapter/Rest.php b/src/Adapter/Rest.php index 2818a37..c166ed9 100644 --- a/src/Adapter/Rest.php +++ b/src/Adapter/Rest.php @@ -93,4 +93,9 @@ class Rest implements AdapterInterface { return $this->parameters; } + + public function escapeIdentifier(string $segment, int $type): string + { + return $segment; + } }