mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2024-11-24 07:26:13 +00:00
19 lines
282 B
Plaintext
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{
|
|
|
|
}
|