Merge pull request #4165 from dokuwiki/bot/autofix

🤖 Automatic code style fixes
This commit is contained in:
Andreas Gohr 2024-01-30 09:45:39 +01:00 committed by GitHub
commit 91e8c0de8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@
* @global Input $INPUT
*/
use dokuwiki\Feed\FeedCreator;
use dokuwiki\Feed\FeedCreatorOptions;
use dokuwiki\Cache\Cache;
use dokuwiki\ChangeLog\MediaChangeLog;
@ -64,7 +65,7 @@ if ($cache->useCache($depends)) {
// create new feed
try {
$feed = (new \dokuwiki\Feed\FeedCreator($options))->build();
$feed = (new FeedCreator($options))->build();
$cache->storeCache($feed);
echo $feed;
} catch (Exception $e) {