Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3 from AntonNiklasson/master
Browse files Browse the repository at this point in the history
Now using the array shorthand syntax introduced in 5.4
  • Loading branch information
awjudd committed Feb 16, 2015
2 parents ba496dd + dadd33f commit 069403f
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/config/config.php
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,
),
),
);
],
],
];

0 comments on commit 069403f

Please sign in to comment.