This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from AntonNiklasson/master
Now using the array shorthand syntax introduced in 5.4
- Loading branch information
Showing
1 changed file
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,63 @@ | ||
<?php | ||
return array( | ||
return [ | ||
|
||
/** | ||
* An array of any of the configuration profiles that the developer may want. | ||
* | ||
* | ||
* @var array | ||
*/ | ||
'profiles' => array( | ||
'profiles' => [ | ||
|
||
/** | ||
* The default configuration information | ||
* | ||
* | ||
* @var array | ||
*/ | ||
'default' => array( | ||
'default' => [ | ||
|
||
/** | ||
* All of the cache settings | ||
* | ||
* | ||
* @var array | ||
*/ | ||
'cache' => array( | ||
'cache' => [ | ||
|
||
/** | ||
* How long the cache is maintained in seconds | ||
* | ||
* | ||
* @var int | ||
*/ | ||
'duration' => 3600, | ||
|
||
/** | ||
* Whether or not caching is enabled. | ||
* | ||
* | ||
* @var boolean | ||
*/ | ||
'enabled' => true, | ||
|
||
/** | ||
* The folder in the "storage" | ||
* | ||
* | ||
* @var string | ||
*/ | ||
'location' => 'rss-feeds', | ||
), | ||
], | ||
|
||
/** | ||
* Whether or not to force the data feed to be treated as an | ||
* Whether or not to force the data feed to be treated as an | ||
* RSS feed. | ||
* | ||
* | ||
* @var boolean | ||
*/ | ||
'force-feed' => false, | ||
|
||
/** | ||
* Whether or not the RSS feed should have it's output ordered by date. | ||
* | ||
* | ||
* @var boolean | ||
*/ | ||
'order-by-date' => false, | ||
), | ||
), | ||
); | ||
], | ||
], | ||
]; |