mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
24 lines
362 B
PHP
24 lines
362 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package testing
|
|
* @copyright (c) 2012 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*/
|
|
class phpbb_mock_search
|
|
{
|
|
|
|
public function __construct($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user)
|
|
{
|
|
}
|
|
|
|
public function index_remove($post_ids, $poster_ids, $forum_ids)
|
|
{
|
|
}
|
|
}
|
|
|