1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10931] Unit tests for phpbb_php_ini class.

PHPBB3-10931
This commit is contained in:
Andreas Fischer
2012-06-11 13:22:11 +02:00
parent ca974e2f2a
commit afd6f86892
2 changed files with 74 additions and 0 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_mock_phpbb_php_ini extends phpbb_php_ini
{
function get($varname)
{
return $varname;
}
}