mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 22:32:12 +02:00
15 lines
199 B
PHP
15 lines
199 B
PHP
<?php
|
|
|
|
namespace MongoDB\Command;
|
|
|
|
final class Command
|
|
{
|
|
/**
|
|
* @param array|object $document Command document
|
|
*/
|
|
public function __construct($document)
|
|
{
|
|
// ...
|
|
}
|
|
}
|