summaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
authorGravatar Frans de Jonge <fransdejonge@gmail.com> 2022-01-05 00:52:24 +0100
committerGravatar GitHub <noreply@github.com> 2022-01-05 00:52:24 +0100
commitd339b6dd454d814ffc323fa9077b70e33339c479 (patch)
treebf82e2b4beda3958502465ef76c223175a978afd /app/Models/Feed.php
parenta6ea90e58b807d18fff601135e3e697b38895ca1 (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.php5
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();