aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bootstrap.php
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2014-10-25 17:33:47 -0700
committerDhruv <dhruv.goel92@gmail.com>2014-10-25 17:33:47 -0700
commit1c88a2cb25a162d111681956edbc0343491ed7d9 (patch)
tree395f9c4315f4d16b667a2b2e069c5ef7b71a72b4 /tests/bootstrap.php
parente78210dc96e9b2d0c6318a77406e60f30f37b50f (diff)
downloadforums-1c88a2cb25a162d111681956edbc0343491ed7d9.tar
forums-1c88a2cb25a162d111681956edbc0343491ed7d9.tar.gz
forums-1c88a2cb25a162d111681956edbc0343491ed7d9.tar.bz2
forums-1c88a2cb25a162d111681956edbc0343491ed7d9.tar.xz
forums-1c88a2cb25a162d111681956edbc0343491ed7d9.zip
[ticket/12962] Fix Line Endings in bootstrap
PHPBB3-12962
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r--tests/bootstrap.php80
1 files changed, 40 insertions, 40 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index e3c7f31b8c..6e5d0b2f39 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -1,40 +1,40 @@
-<?php
-/**
-*
-* This file is part of the phpBB Forum Software package.
-*
-* @copyright (c) phpBB Limited <https://www.phpbb.com>
-* @license GNU General Public License, version 2 (GPL-2.0)
-*
-* For full copyright and license information, please see
-* the docs/CREDITS.txt file.
-*
-*/
-
-define('IN_PHPBB', true);
-$phpbb_root_path = 'phpBB/';
-$phpEx = 'php';
-require_once $phpbb_root_path . 'includes/startup.php';
-
-$table_prefix = 'phpbb_';
-require_once $phpbb_root_path . 'includes/constants.php';
-require_once $phpbb_root_path . 'phpbb/class_loader.' . $phpEx;
-require_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
-
-$phpbb_class_loader_mock = new \phpbb\class_loader('phpbb_mock_', $phpbb_root_path . '../tests/mock/', "php");
-$phpbb_class_loader_mock->register();
-$phpbb_class_loader_ext = new \phpbb\class_loader('\\', $phpbb_root_path . 'ext/', "php");
-$phpbb_class_loader_ext->register();
-$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', $phpbb_root_path . 'phpbb/', "php");
-$phpbb_class_loader->register();
-
-require_once 'test_framework/phpbb_test_case_helpers.php';
-require_once 'test_framework/phpbb_test_case.php';
-require_once 'test_framework/phpbb_database_test_case.php';
-require_once 'test_framework/phpbb_database_test_connection_manager.php';
-
-if (version_compare(PHP_VERSION,'5.3.19',">="))
-{
- require_once 'test_framework/phpbb_functional_test_case.php';
- require_once 'test_framework/phpbb_ui_test_case.php';
-}
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+define('IN_PHPBB', true);
+$phpbb_root_path = 'phpBB/';
+$phpEx = 'php';
+require_once $phpbb_root_path . 'includes/startup.php';
+
+$table_prefix = 'phpbb_';
+require_once $phpbb_root_path . 'includes/constants.php';
+require_once $phpbb_root_path . 'phpbb/class_loader.' . $phpEx;
+require_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
+
+$phpbb_class_loader_mock = new \phpbb\class_loader('phpbb_mock_', $phpbb_root_path . '../tests/mock/', "php");
+$phpbb_class_loader_mock->register();
+$phpbb_class_loader_ext = new \phpbb\class_loader('\\', $phpbb_root_path . 'ext/', "php");
+$phpbb_class_loader_ext->register();
+$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', $phpbb_root_path . 'phpbb/', "php");
+$phpbb_class_loader->register();
+
+require_once 'test_framework/phpbb_test_case_helpers.php';
+require_once 'test_framework/phpbb_test_case.php';
+require_once 'test_framework/phpbb_database_test_case.php';
+require_once 'test_framework/phpbb_database_test_connection_manager.php';
+
+if (version_compare(PHP_VERSION,'5.3.19',">="))
+{
+ require_once 'test_framework/phpbb_functional_test_case.php';
+ require_once 'test_framework/phpbb_ui_test_case.php';
+}