Phalcon\Db\Adapter\MongoDB\Operation\ListDatabases::__construct PHP Метод

__construct() публичный Метод

Supported options: * maxTimeMS (integer): The maximum amount of time to allow the query to run.
public __construct ( array $options = [] )
$options array Command options
    public function __construct(array $options = [])
    {
        if (isset($options['maxTimeMS']) && !is_integer($options['maxTimeMS'])) {
            throw InvalidArgumentException::invalidType('"maxTimeMS" option', $options['maxTimeMS'], 'integer');
        }
        $this->options = $options;
    }