aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-08-01 21:36:25 +0200
committerGravatar GitHub <noreply@github.com> 2025-08-01 21:36:25 +0200
commit536c476f0d5c5bfce324215eb7d9aea353c36298 (patch)
tree1e4bc28cb80dc52a3ffdb1055d6ba3b5e5986486 /lib
parent7bbee11bef7b26f41aaa4540e790ca30b929a5df (diff)
composer update + corresponding PHPStan fixes (#7781)
Replacing failing Dependabot PRs: * https://github.com/FreshRSS/FreshRSS/pull/7779 * https://github.com/FreshRSS/FreshRSS/pull/7780 * https://github.com/FreshRSS/FreshRSS/pull/7778
Diffstat (limited to 'lib')
-rw-r--r--lib/Minz/Pdo.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Minz/Pdo.php b/lib/Minz/Pdo.php
index 705c2d58c..fa3f3061c 100644
--- a/lib/Minz/Pdo.php
+++ b/lib/Minz/Pdo.php
@@ -51,7 +51,7 @@ abstract class Minz_Pdo extends PDO {
/**
* @param array<int,string> $options
* @throws PDOException if the attribute `PDO::ATTR_ERRMODE` is set to `PDO::ERRMODE_EXCEPTION`
- * @phpstan-ignore method.childParameterType, throws.unusedType
+ * @phpstan-ignore method.childParameterType
*/
#[\Override]
public function prepare(string $query, array $options = []): PDOStatement|false {
@@ -61,7 +61,6 @@ abstract class Minz_Pdo extends PDO {
/**
* @throws PDOException if the attribute `PDO::ATTR_ERRMODE` is set to `PDO::ERRMODE_EXCEPTION`
- * @phpstan-ignore throws.unusedType
*/
#[\Override]
public function exec(string $statement): int|false {
@@ -71,7 +70,6 @@ abstract class Minz_Pdo extends PDO {
/**
* @throws PDOException if the attribute `PDO::ATTR_ERRMODE` is set to `PDO::ERRMODE_EXCEPTION`
- * @phpstan-ignore throws.unusedType
*/
#[\Override]
public function query(string $query, ?int $fetch_mode = null, ...$fetch_mode_args): PDOStatement|false {