Files
mongo-php-driver/tests/cursor/cursorinterface-002.phpt
2019-02-28 18:15:09 -05:00

12 lines
227 B
PHP

--TEST--
MongoDB\Driver\CursorInterface extends Traversable
--FILE--
<?php
var_dump(in_array('Traversable', class_implements('MongoDB\Driver\CursorInterface')));
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
bool(true)
===DONE===