Commit a079417e authored by Jeremy Mikola's avatar Jeremy Mikola

Executable interface for operations

parent d77b7fc2
<?php
namespace MongoDB\Operation;
use MongoDB\Driver\Server;
/**
* Executable interface for operation classes.
*
* @api
*/
interface Executable
{
/**
* Execute the operation.
*
* @param Server $server
* @return mixed
*/
public function execute(Server $server);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment