From ba35e6f1418aeff54a30cba74141e72b631f2877 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Mon, 15 Sep 2025 00:47:20 +0300 Subject: [PATCH] Removed `filename` method and related documentation from presets --- docs/snippets/receipt-instagram-feed.php | 5 ----- docs/topics/presets.topic | 4 ---- 2 files changed, 9 deletions(-) diff --git a/docs/snippets/receipt-instagram-feed.php b/docs/snippets/receipt-instagram-feed.php index 1f08025..1e4af2f 100644 --- a/docs/snippets/receipt-instagram-feed.php +++ b/docs/snippets/receipt-instagram-feed.php @@ -49,9 +49,4 @@ public function item(Model $model): FeedItem ], ]); } - - public function filename(): string - { - return 'instagram.xml'; - } } diff --git a/docs/topics/presets.topic b/docs/topics/presets.topic index abdf51f..b5b265f 100644 --- a/docs/topics/presets.topic +++ b/docs/topics/presets.topic @@ -36,10 +36,6 @@ -

- If needed, you can also override the filename method to change the output file name. -

-

Technically, preset classes are the same as the base Feed class, except they include the service-specific logic they target, including how information blocks and items are built.