blob: d91b7d0ff4920ed8cc28b6953fd4c3535ea12fa1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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)
|