1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-12 21:45:56 +00:00

set better matching type hint on virtual feed object

This commit is contained in:
Andrew Dolgov
2021-11-15 08:19:44 +03:00
parent 676c5787e7
commit 2493c9cddd

View File

@@ -273,6 +273,8 @@ class Counters {
if (is_array($feeds)) {
foreach ($feeds as $feed) {
/** @var IVirtualFeed $feed['sender'] */
if (!implements_interface($feed['sender'], 'IVirtualFeed'))
continue;