mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 14:22:19 +02:00
12 lines
156 B
PHP
12 lines
156 B
PHP
<?php
|
|
|
|
namespace MongoDB;
|
|
|
|
interface ServerResult
|
|
{
|
|
/**
|
|
* @return Server Server on which the result originated
|
|
*/
|
|
function getServer();
|
|
}
|