mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
14 lines
331 B
PHP
14 lines
331 B
PHP
--TEST--
|
|
MongoDB\Driver\Exception\Exception extends Throwable
|
|
--SKIPIF--
|
|
<?php if (!interface_exists('Throwable')) { die('skip Throwable is not available'); } ?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(in_array('Throwable', class_implements('MongoDB\Driver\Exception\Exception')));
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
bool(true)
|
|
===DONE===
|