Files
mongo-php-driver/docs/api/MongoDB/Write/WriteBatch.php
2014-06-12 03:19:17 -04:00

17 lines
298 B
PHP

<?php
namespace MongoDB\Write;
interface WriteBatch extends \Countable
{
/**
* @param array|object Operation/document to add to the batch
*/
function add($document);
/**
* @return array Array of operations/documents in the batch
*/
function getDocuments();
}