mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-03 06:42:23 +02:00
12 lines
201 B
PHP
12 lines
201 B
PHP
<?php
|
|
|
|
namespace MongoDB\Command;
|
|
|
|
interface CommandResult extends \MongoDB\ServerResult
|
|
{
|
|
/**
|
|
* @return array Original response document from the server
|
|
*/
|
|
function getResponse();
|
|
}
|