mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-03 06:42:23 +02:00
9 lines
186 B
PHP
9 lines
186 B
PHP
<?php
|
|
|
|
namespace MongoDB\Write;
|
|
|
|
interface BulkResult extends InsertResult, UpdateResult, DeleteResult
|
|
{
|
|
// Note: this interface would exist alongside Bulk API in the userland lib
|
|
}
|