mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-26 01:42:10 +01: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===
|