mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
12 lines
230 B
PHP
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===
|