Fixed PHPStan iterable types for LevelDBIterator

This commit is contained in:
Dylan K. Taylor 2022-03-09 17:28:59 +00:00
parent 856fd2a33b
commit 4c98780bdb
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -8,4 +8,11 @@ class LevelDB{
* @return string|false
*/
public function get($key, array $read_options = []){}
}
}
/**
* @implements Iterator<string, string>
*/
class LevelDBIterator implements Iterator{
}