Skip to content

Commit

Permalink
Update feed.php (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored Mar 20, 2022
1 parent 9f69d91 commit b9e9a48
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* the items that should appear in the feed. For example:
* [App\Model::class, 'getAllFeedItems']
*
* You can also pass an argument to that method. Note that their key must be the name of the parameter:
* You can also pass an argument to that method. Note that their key must be the name of the parameter:
* [App\Model::class, 'getAllFeedItems', 'parameterName' => 'argument']
*/
'items' => '',
Expand All @@ -23,14 +23,14 @@
'language' => 'en-US',

/*
* The image to display for the feed. For Atom feeds, this is displayed as
* The image to display for the feed. For Atom feeds, this is displayed as
* a banner/logo; for RSS and JSON feeds, it's displayed as an icon.
* An empty value omits the image attribute from the feed.
*/
'image' => '',

/*
* The format of the feed. Acceptable values are 'rss', 'atom', or 'json'.
* The format of the feed. Acceptable values are 'rss', 'atom', or 'json'.
*/
'format' => 'atom',

Expand All @@ -40,13 +40,13 @@
'view' => 'feed::atom',

/*
* The mime type to be used in the <link> tag. Set to an empty string to automatically
* The mime type to be used in the <link> tag. Set to an empty string to automatically
* determine the correct value.
*/
'type' => '',

/*
* The content type for the feed response. Set to an empty string to automatically
* The content type for the feed response. Set to an empty string to automatically
* determine the correct value.
*/
'contentType' => '',
Expand Down

0 comments on commit b9e9a48

Please sign in to comment.