1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-24 00:05:33 +02:00
php-phpbb/phpBB/phpbb/db/tools/factory.php
Tristan Darricau 6ce708539b [ticket/16741] General fixes
PHPBB3-16741
2021-11-09 02:48:34 +01:00

31 lines
609 B
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.
*
*/
namespace phpbb\db\tools;
use Doctrine\DBAL\Connection;
/**
* A factory which serves the suitable tools instance for the given dbal
*/
class factory
{
/**
* @return tools_interface
*/
public function get(Connection $connection, $return_statements = false)
{
return new doctrine($connection, $return_statements);
}
}