1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/15055] Further fixes to ensure PHP 7.1 & mssql compatibility

PHPBB3-15055
This commit is contained in:
Marc Alexander
2017-01-29 11:05:45 +01:00
parent 4a2e203a80
commit 66143e99be
4 changed files with 8 additions and 6 deletions

View File

@@ -34,6 +34,11 @@ abstract class phpbb_console_user_base extends phpbb_database_test_case
{
global $auth, $db, $cache, $config, $user, $phpbb_dispatcher, $phpbb_container, $phpbb_root_path, $phpEx;
if (strtolower(substr(PHP_OS, 0, 5)) !== 'linux')
{
$this->markTestSkipped('Unable to test console feature on OS other than Linux.');
}
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
$phpbb_container = new phpbb_mock_container_builder();
$phpbb_container->set('cache.driver', new phpbb_mock_cache());