From efcc8f387bb44901e0e3e284b7aa225e684549fd Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 15 Apr 2023 22:04:37 +0200 Subject: PHPStan level 6 for remaining DAO classes (#5299) * PHPStan level 6 FreshRSS_CategoryDAO Follow-up of https://github.com/FreshRSS/FreshRSS/pull/5298 Contributes to https://github.com/FreshRSS/FreshRSS/issues/4112 * PHPStan Level 6 for FeedDAO and a bit more * PHPStan Level 6 for tagDAO --- app/Models/EntryDAO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/EntryDAO.php') diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index 6fa673f22..9f24beb7c 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -700,7 +700,7 @@ SQL; } } - /** @return iterator> */ + /** @return iterator> */ public function selectAll() { $sql = 'SELECT id, guid, title, author, ' . (static::isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content') -- cgit v1.2.3