Major changes: - New ThemeManager with Twig templating and SCSS compilation - Dynamic themes system (themes/default, themes/demo) - LogManager with SQLite storage and syslog forwarding - RequestLogger with static helper methods - Admin UI overhaul (Bootstrap 5, dark mode) - Admin config page with logging and theme settings - Admin logs page with filters and search - Removed legacy Mustache templates - Removed test plugin and theme - Composer dependencies: Twig, scssphp, CommonMark, MaxMind GeoIP
14 lines
265 B
PHP
14 lines
265 B
PHP
--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)
|