• File: 002-final.phpt
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/002-final.phpt
  • File size: 265 bytes
  • MIME-type: text/plain
  • Charset: utf-8
--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)