1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 00:01:29 +00:00

fix even more warnings reported by phpstan

This commit is contained in:
Andrew Dolgov
2021-02-06 17:56:47 +03:00
parent c94f1b6ff8
commit 41fc03287e
4 changed files with 11 additions and 17 deletions

View File

@@ -174,7 +174,7 @@ class API extends Handler {
$unread = getFeedUnread($cat_id, true);
if ($unread || !$unread_only) {
array_push($cats, array("id" => (int) $cat_id,
array_push($cats, array("id" => $cat_id,
"title" => Feeds::getCategoryTitle($cat_id),
"unread" => (int) $unread));
}
@@ -243,6 +243,7 @@ class API extends Handler {
$field = "";
$set_to = "";
$additional_fields = "";
switch ($field_raw) {
case 0:
@@ -842,14 +843,8 @@ class API extends Handler {
$_REQUEST['mode'] = 2;
$_REQUEST['force_show_empty'] = $include_empty;
if ($pf){
$data = $pf->makefeedtree();
$this->wrap(self::STATUS_OK, array("categories" => $data));
} else {
$this->wrap(self::STATUS_ERR, array("error" =>
'UNABLE_TO_INSTANTIATE_OBJECT'));
}
$this->wrap(self::STATUS_OK,
array("categories" => $pf->makefeedtree()));
}
// only works for labels or uncategorized for the time being