mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 22:32:12 +02:00
27 lines
359 B
PHP
27 lines
359 B
PHP
<?php
|
|
|
|
namespace MongoDB\Write;
|
|
|
|
interface UpdateResult extends WriteResult
|
|
{
|
|
/**
|
|
* @return integer
|
|
*/
|
|
function getNumMatched();
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
function getNumModified();
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
function getNumUpserted();
|
|
|
|
/**
|
|
* @return Upsert[]
|
|
*/
|
|
function getUpserts();
|
|
}
|