mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-25 17:38:09 +02:00
15 lines
213 B
PHP
15 lines
213 B
PHP
--TEST--
|
|
MongoDB\Driver\BulkWrite implements Countable
|
|
--FILE--
|
|
<?php
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite;
|
|
var_dump($bulk instanceof Countable);
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
bool(true)
|
|
===DONE===
|