mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-01 09:01:06 -05:00
* revert Fix code indentation Fix code Upgrade code to php 8.1 * fix remarques * code review * code review * code review * Apply suggestions from code review * code review * Fixes * Many remainging updates of array syntax * Lost case 'reading-list' * Uneeded PHPDoc --------- Co-authored-by: Luc Sanchez <l.sanchez-prestataire@alptis.fr> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
30 lines
739 B
PHP
30 lines
739 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* MINZ - Copyright 2011 Marien Fressinaud
|
|
* Sous licence AGPL3 <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
class Minz_PdoPgsql extends Minz_Pdo {
|
|
/**
|
|
* @param array<int,int|string|bool>|null $options
|
|
* @throws PDOException
|
|
*/
|
|
public function __construct(string $dsn, ?string $username = null, ?string $passwd = null, ?array $options = null) {
|
|
parent::__construct($dsn, $username, $passwd, $options);
|
|
$this->exec("SET NAMES 'UTF8';");
|
|
}
|
|
|
|
#[\Override]
|
|
public function dbType(): string {
|
|
return 'pgsql';
|
|
}
|
|
|
|
#[\Override]
|
|
protected function preSql(string $statement): string {
|
|
$statement = parent::preSql($statement);
|
|
return str_replace(['`', ' LIKE '], ['"', ' ILIKE '], $statement);
|
|
}
|
|
}
|