Viewing File: /opt/alt/tests/alt-php83-pecl-mongodb_1.18.1-1.el8/tests/bug0430-001.phpt

--TEST--
PHPC-430: Query constructor arguments are modified
--FILE--
<?php

$filter = [];
$options = ['sort' => ['x' => 1]];
$query = new MongoDB\Driver\Query($filter, $options);

var_dump($filter);
var_dump($options);

?>
===DONE===
<?php exit(0); ?>
--EXPECT--
array(0) {
}
array(1) {
  ["sort"]=>
  array(1) {
    ["x"]=>
    int(1)
  }
}
===DONE===
Back to Directory File Manager
<