* @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\middleware\mysql; use Doctrine\DBAL\Driver; /** * MySQL Doctrine middleware. * Makes use of phpBB's MySQL specific platform. */ class phpbb_mysql_middleware implements Driver\Middleware { public function wrap(Driver $driver): Driver { return new phpbb_mysql_driver($driver); } }