1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-08 09:36:39 +02:00

Normalize some method calls (#2911)

The methods were called as static even though they were not.
This commit is contained in:
Jan Tojnar
2022-07-09 08:13:07 +02:00
committed by GitHub
parent a966213cd7
commit e07a94d480
10 changed files with 12 additions and 12 deletions

View File

@@ -53,7 +53,7 @@ class RobinhoodSnacksBridge extends BridgeAbstract
'uri' => $uri,
'title' => $title,
'timestamp' => $timestamp,
'content' => self::getArticleContent($uri)
'content' => $this->getArticleContent($uri)
];
}
}