fuc-new/vendor/maxmind-db/reader/ext/tests/002-final.phpt
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

14 lines
265 B
PHP
Executable File

--TEST--
Check that Reader class is not final
--SKIPIF--
<?php if (!extension_loaded('maxminddb')) {
echo 'skip';
} ?>
--FILE--
<?php
$reflectionClass = new \ReflectionClass('MaxMind\Db\Reader');
var_dump($reflectionClass->isFinal());
?>
--EXPECT--
bool(false)