1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-28 02:30:29 +02:00

[ticket/10931] Make it clear that we are mocking the ini_get() function.

PHPBB3-10931
This commit is contained in:
Andreas Fischer
2012-06-11 14:18:21 +02:00
parent 7501ea825a
commit 5086366662
2 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
<?php
/**
*
* @package testing
* @copyright (c) 2011 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
class phpbb_php_ini_fake extends phpbb_php_ini
{
function get($varname)
{
return $varname;
}
}