Address PHPStan warning about unused private method 'Prefs::_delete()'.
This commit is contained in:
parent
7ed4fa4c1d
commit
dabb85c7dd
|
@ -325,13 +325,13 @@ class Prefs {
|
||||||
return self::get_instance()->_set($pref_name, $value, $owner_uid, $profile_id);
|
return self::get_instance()->_set($pref_name, $value, $owner_uid, $profile_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _delete(string $pref_name, int $owner_uid, ?int $profile_id): bool {
|
/* private function _delete(string $pref_name, int $owner_uid, ?int $profile_id): bool {
|
||||||
$sth = $this->pdo->prepare("DELETE FROM ttrss_user_prefs2
|
$sth = $this->pdo->prepare("DELETE FROM ttrss_user_prefs2
|
||||||
WHERE pref_name = :name AND owner_uid = :uid AND
|
WHERE pref_name = :name AND owner_uid = :uid AND
|
||||||
(profile = :profile OR (:profile IS NULL AND profile IS NULL))");
|
(profile = :profile OR (:profile IS NULL AND profile IS NULL))");
|
||||||
|
|
||||||
return $sth->execute(["uid" => $owner_uid, "profile" => $profile_id, "name" => $pref_name ]);
|
return $sth->execute(["uid" => $owner_uid, "profile" => $profile_id, "name" => $pref_name ]);
|
||||||
}
|
} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool|int|string $value
|
* @param bool|int|string $value
|
||||||
|
|
Loading…
Reference in New Issue