mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
Due to an auth_refactor, there is a new dependency in session.php on phpbb_container and a provider. For purposes of testing, implemented a simple one. PHPBB3-11620
24 lines
334 B
PHP
24 lines
334 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package testing
|
|
* @copyright (c) 2013 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Mock provider class with basic functions to help test
|
|
* sessions.
|
|
*/
|
|
class phpbb_provider {
|
|
function autologin()
|
|
{
|
|
return array();
|
|
}
|
|
function kill()
|
|
{
|
|
|
|
}
|
|
}
|