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