diff options
| author | 2022-01-05 00:52:24 +0100 | |
|---|---|---|
| committer | 2022-01-05 00:52:24 +0100 | |
| commit | d339b6dd454d814ffc323fa9077b70e33339c479 (patch) | |
| tree | bf82e2b4beda3958502465ef76c223175a978afd /app/Models/Feed.php | |
| parent | a6ea90e58b807d18fff601135e3e697b38895ca1 (diff) | |
[CI] PHPCS: check for opening brace on same line (#4122)
* [CI] PHPCS: check for opening brace on same line
* make fix-all
* Minor comments
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/Models/Feed.php')
| -rw-r--r-- | app/Models/Feed.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php index 972983384..781553ca7 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -496,7 +496,10 @@ class FreshRSS_Feed extends Minz_Model { } } - public function cleanOldEntries() { //Remember to call updateCachedValue($id_feed) or updateCachedValues() just after + /** + * Remember to call updateCachedValue($id_feed) or updateCachedValues() just after + */ + public function cleanOldEntries() { $archiving = $this->attributes('archiving'); if ($archiving == null) { $catDAO = FreshRSS_Factory::createCategoryDao(); |
