Files
mongo-php-driver/tests/cursor/cursorinterface-003.phpt
2020-10-29 19:38:14 +01:00

12 lines
230 B
PHP

--TEST--
MongoDB\Driver\CursorInterface does not extend Iterator
--FILE--
<?php
var_dump(in_array('Iterator', class_implements('MongoDB\Driver\CursorInterface')));
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
bool(false)
===DONE===