aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-01-08 20:53:53 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-01-08 20:53:53 +0100
commit26c6cb819eea5fe67d5df7b0af3f580848b953b6 (patch)
tree592fce43ab89e8e9fc0e53c0dd456951a601d3c4 /phpBB
parentaaee7c7db94f025795bd442c860f79e7992c7bbe (diff)
parent42cf311b2ff513a7d90b903f601157a7a65ba4cf (diff)
downloadforums-26c6cb819eea5fe67d5df7b0af3f580848b953b6.tar
forums-26c6cb819eea5fe67d5df7b0af3f580848b953b6.tar.gz
forums-26c6cb819eea5fe67d5df7b0af3f580848b953b6.tar.bz2
forums-26c6cb819eea5fe67d5df7b0af3f580848b953b6.tar.xz
forums-26c6cb819eea5fe67d5df7b0af3f580848b953b6.zip
Merge pull request #4625 from Nicofuma/ticket/14973
[ticket/14973] Add BC layer for \phpbb\db\tools
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/db/tools.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/tools.php b/phpBB/phpbb/db/tools.php
new file mode 100644
index 0000000000..4d1b91f7b4
--- /dev/null
+++ b/phpBB/phpbb/db/tools.php
@@ -0,0 +1,21 @@
+<?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.
+*
+*/
+
+namespace phpbb\db;
+
+/**
+ * @deprecated 3.2.0-dev (To be removed 3.3.0) use \phpbb\db\tools\tools instead
+ */
+class tools extends \phpbb\db\tools\tools
+{
+}