mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-05 23:17:00 -05:00
* PHP 8.3 #[\Override] https://php.watch/versions/8.3/override-attr With PHPStan `checkMissingOverrideMethodAttribute` https://phpstan.org/config-reference#checkmissingoverridemethodattribute And modified the call to phpstan-next on the model of https://github.com/FreshRSS/Extensions/pull/228 (more robust than the find method, which gave some strange errors) * Update extension example accordingly
35 lines
914 B
PHP
35 lines
914 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* MINZ - Copyright 2011 Marien Fressinaud
|
|
* Sous licence AGPL3 <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
class Minz_PdoMysql 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->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, false);
|
|
}
|
|
|
|
#[\Override]
|
|
public function dbType(): string {
|
|
return 'mysql';
|
|
}
|
|
|
|
/**
|
|
* @param string|null $name
|
|
* @return string|false
|
|
* @throws PDOException if the attribute `PDO::ATTR_ERRMODE` is set to `PDO::ERRMODE_EXCEPTION`
|
|
*/
|
|
#[\Override]
|
|
#[\ReturnTypeWillChange]
|
|
public function lastInsertId($name = null) {
|
|
return parent::lastInsertId(); //We discard the name, only used by PostgreSQL
|
|
}
|
|
}
|