geoip redirection for superforex.com.au
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
265B

  1. --TEST--
  2. Check that Reader class is not final
  3. --SKIPIF--
  4. <?php if (!extension_loaded('maxminddb')) {
  5. echo 'skip';
  6. } ?>
  7. --FILE--
  8. <?php
  9. $reflectionClass = new \ReflectionClass('MaxMind\Db\Reader');
  10. var_dump($reflectionClass->isFinal());
  11. ?>
  12. --EXPECT--
  13. bool(false)