diff options
| author | 2023-04-15 22:04:37 +0200 | |
|---|---|---|
| committer | 2023-04-15 22:04:37 +0200 | |
| commit | efcc8f387bb44901e0e3e284b7aa225e684549fd (patch) | |
| tree | 406e75d949224a30d50dd61b27d418d167ff131d /app/Models/EntryDAO.php | |
| parent | 789c44b50222a24c565c783dbaf53d6ae465fc1d (diff) | |
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
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 2 |
1 files changed, 1 insertions, 1 deletions
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<array<string,mixed>> */ + /** @return iterator<array<string,string|int>> */ public function selectAll() { $sql = 'SELECT id, guid, title, author, ' . (static::isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content') |
