aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/Pdo.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-12-01 23:24:39 +0100
committerGravatar GitHub <noreply@github.com> 2021-12-01 23:24:39 +0100
commit28cff8a0df3af23f7acf01840da43c098c779313 (patch)
tree491cd077f3fbad8fecd57c3e80880d39b8c577d0 /lib/Minz/Pdo.php
parentb21fe199ed19fcc08fe3ece2d9ab553dcc0e73c9 (diff)
Fix some PHP 8.1 warnings (#4012)
* Fix some PHP 8.1 warnings The proper fix will have to wait till be drop PHP7. #fix https://github.com/FreshRSS/FreshRSS/issues/4010 * Another PHP8.1 fix
Diffstat (limited to 'lib/Minz/Pdo.php')
-rw-r--r--lib/Minz/Pdo.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Minz/Pdo.php b/lib/Minz/Pdo.php
index d334c0533..9c754be86 100644
--- a/lib/Minz/Pdo.php
+++ b/lib/Minz/Pdo.php
@@ -28,6 +28,8 @@ abstract class Minz_Pdo extends PDO {
return $this->autoPrefix($statement);
}
+ // PHP8+: PDO::lastInsertId(?string $name = null): string|false
+ #[\ReturnTypeWillChange]
public function lastInsertId($name = null) {
if ($name != null) {
$name = $this->preSql($name);
@@ -35,16 +37,22 @@ abstract class Minz_Pdo extends PDO {
return parent::lastInsertId($name);
}
+ // PHP8+: PDO::prepare(string $query, array $options = []): PDOStatement|false
+ #[\ReturnTypeWillChange]
public function prepare($statement, $driver_options = array()) {
$statement = $this->preSql($statement);
return parent::prepare($statement, $driver_options);
}
+ // PHP8+: PDO::exec(string $statement): int|false
+ #[\ReturnTypeWillChange]
public function exec($statement) {
$statement = $this->preSql($statement);
return parent::exec($statement);
}
+ // PHP8+: PDO::query(string $query, ?int $fetchMode = null, mixed ...$fetchModeArgs): PDOStatement|false
+ #[\ReturnTypeWillChange]
public function query($query, $fetch_mode = null, ...$fetch_mode_args) {
$query = $this->preSql($query);
return $fetch_mode ? parent::query($query, $fetch_mode, ...$fetch_mode_args) : parent::query($query);