arangodb / arangodb-php

PHP ODM for ArangoDB
https://www.arangodb.com
Apache License 2.0
182 stars 46 forks source link

deprecated method in examples #178

Closed antokara closed 9 years ago

antokara commented 9 years ago

In the README.md there is at least one deprecated method used in the examples

$result = $handler->delete($userFromServer);

where it should be

$result = $handler->remove($userFromServer);
frankmayer commented 9 years ago

Changed this and a few related things (directly in master for now). Thanks Antonis :+1: