1--TEST--
2Check 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');
10var_dump($reflectionClass->isFinal());
11?>
12--EXPECT--
13bool(false)
14