mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 09:46:46 +02:00
32 lines
668 B
PHP
32 lines
668 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\middleware\postgresql;
|
|
|
|
use Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware;
|
|
|
|
/**
|
|
* PostgreSQL Doctrine driver middleware.
|
|
* Makes use of phpBB's PostgreSQL specific platform.
|
|
*/
|
|
class driver extends AbstractDriverMiddleware
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function createDatabasePlatformForVersion($version)
|
|
{
|
|
return new platform();
|
|
}
|
|
}
|