0
0
mirror of https://github.com/pmmp/PocketMine-MP.git synced 2024-11-24 07:26:13 +00:00
PocketMine-MP/tests/phpstan/stubs/leveldb.stub
2022-03-09 17:28:59 +00:00

19 lines
282 B
Plaintext

<?php
class LevelDB{
/**
* @param string $key
* @param array<string, mixed> $read_options
*
* @return string|false
*/
public function get($key, array $read_options = []){}
}
/**
* @implements Iterator<string, string>
*/
class LevelDBIterator implements Iterator{
}