diff options
Diffstat (limited to 'tests/wrapper/phpbb_php_ini_fake.php')
-rw-r--r-- | tests/wrapper/phpbb_php_ini_fake.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/wrapper/phpbb_php_ini_fake.php b/tests/wrapper/phpbb_php_ini_fake.php new file mode 100644 index 0000000000..f218ff6d03 --- /dev/null +++ b/tests/wrapper/phpbb_php_ini_fake.php @@ -0,0 +1,20 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +class phpbb_php_ini_fake extends \phpbb\php\ini +{ + function get($varname) + { + return $varname; + } +} |