Files
mongo-php-driver/docs/api/MongoDB/Command/Command.php
Hannes Magnusson f277d731e9 Add descriptions
2014-06-19 11:17:16 -07:00

22 lines
349 B
PHP

<?php
namespace MongoDB\Command;
/**
* Value object for a database command document.
*/
final class Command
{
private $document;
/**
* Constructs a new MongoDB Command
*
* @param array|object $document Command document
*/
public function __construct($document)
{
$this->document = $document;
}
}