Looks like the find() method is a copy of the delete() method. It unsets the key rather than returning it. https://github.com/doctrine/KeyValueStore/blob/master/lib/Doctrine/KeyValueStore/Storage/ArrayStorage.php#L124 `public function find($storageName, $key) { if (!isset($this->data[$storageName])) { throw new NotFoundException(); } if (!isset($this->data[$storageName][serialize($key)])) { throw new NotFoundException(); } unset($this->data[$storageName][serialize($key)]); }`
Looks like the find() method is a copy of the delete() method. It unsets the key rather than returning it.
https://github.com/doctrine/KeyValueStore/blob/master/lib/Doctrine/KeyValueStore/Storage/ArrayStorage.php#L124
`public function find($storageName, $key)
{
if (!isset($this->data[$storageName])) {
throw new NotFoundException();
}