Files
mongo-php-driver/docs/api/MongoDB/Write/WriteBatch.php
Hannes Magnusson f277d731e9 Add descriptions
2014-06-19 11:17:16 -07:00

15 lines
275 B
PHP

<?php
namespace MongoDB\Write;
interface WriteBatch extends \Countable
{
/**
* Adds a new operation to be executed
*
* @param array|object $document Operation/document to add to the batch
* @return DeleteBatch
*/
function add($document);
}