mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-27 02:18:11 +02:00
6ffcb1f1dd
* Test on PHP 8.2 * Fix tests relating to dynamic properties * Fix tests failing due to different __set_state output * Duplicate clone test without dynamic properties for PHP >= 8.2
19 lines
335 B
PHP
19 lines
335 B
PHP
--TEST--
|
|
MongoDB\Driver\CursorId::__set_state()
|
|
--FILE--
|
|
<?php
|
|
|
|
var_export(MongoDB\Driver\CursorId::__set_state([
|
|
'id' => '7250031947823432848',
|
|
]));
|
|
echo "\n";
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
%r\\?%rMongoDB\Driver\CursorId::__set_state(array(
|
|
'id' => %r(7250031947823432848|'7250031947823432848')%r,
|
|
))
|
|
===DONE===
|