From 42cf311b2ff513a7d90b903f601157a7a65ba4cf Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Sun, 8 Jan 2017 18:31:10 +0100 Subject: [PATCH] =?UTF-8?q?[ticket/14973]=C2=A0Add=20BC=20layer=20for=20\p?= =?UTF-8?q?hpbb\db\tools?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PHPBB3-14973 --- phpBB/phpbb/db/tools.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 phpBB/phpbb/db/tools.php 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 @@ + +* @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 +{ +}