Skip to content

Commit

Permalink
Added a proxy for closeCursor.
Browse files Browse the repository at this point in the history
Signed-off-by: dblock <dblock@amazon.com>
  • Loading branch information
dblock committed Aug 9, 2024
1 parent 60dcdba commit 97e3728
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions util/EndpointProxies/sql/closeCursorProxy.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

return <<<'EOD'
/**
* Proxy function to closeCursor() to prevent BC break.
* This API will be removed in a future version. Use 'close' API instead.
*/
public function closeCursor(array $params = [])
{
return $this->close($params);
}
EOD;

0 comments on commit 97e3728

Please sign in to comment.