mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-03 06:42:23 +02:00
17 lines
206 B
PHP
17 lines
206 B
PHP
<?php
|
|
|
|
namespace MongoDB\Write;
|
|
|
|
final class Upsert
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
function getId();
|
|
|
|
/**
|
|
* @return integer Batch index of the upsert
|
|
*/
|
|
function getIndex();
|
|
}
|