summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorwn_ <[email protected]>2023-03-05 16:29:51 +0000
committerwn_ <[email protected]>2023-03-05 16:29:51 +0000
commit029cb8f4420a99aef225413f3c32ec1db35717a8 (patch)
treec81e07021256dba549c0771c230535192bac0004 /classes
parent42b287e9646c61f4f62b3d44c5ab6897c4c6bf06 (diff)
Revert 7ed4fa4c1dbdd9df552cf6dd28907c6769911a0e and use @var instead.
PHPStan had trouble recognizing that ['items'] might have elements added.
Diffstat (limited to 'classes')
-rwxr-xr-xclasses/pref/feeds.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index d8b2ba01a..36dfbef76 100755
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -241,7 +241,12 @@ class Pref_Feeds extends Handler_Protected {
//$root['param'] += count($cat['items']);
}
- /* Uncategorized is a special case */
+ /**
+ * Uncategorized is a special case.
+ *
+ * Define a minimal array shape to help PHPStan with the type of $cat['items']
+ * @var array{items: array<int, array<string, mixed>>} $cat
+ */
$cat = [
'id' => 'CAT:0',
'bare_id' => 0,
@@ -267,7 +272,7 @@ class Pref_Feeds extends Handler_Protected {
}
foreach ($feeds_obj->find_many() as $feed) {
- $cat['items'][] = [
+ array_push($cat['items'], [
'id' => 'FEED:' . $feed->id,
'bare_id' => (int) $feed->id,
'auxcounter' => -1,
@@ -279,7 +284,7 @@ class Pref_Feeds extends Handler_Protected {
'unread' => -1,
'type' => 'feed',
'updates_disabled' => (int)($feed->update_interval < 0),
- ];
+ ]);
}
$cat['param'] = sprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));