From dadd33fe7f6ba98e418bb341b315fd3015a1e166 Mon Sep 17 00:00:00 2001 From: Anton Niklasson Date: Fri, 15 Aug 2014 22:40:08 +0200 Subject: [PATCH] Now using the array shorthand syntax introduced in 5.4 --- src/config/config.php | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/config/config.php b/src/config/config.php index eae1acb..8eabd84 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -1,63 +1,63 @@ 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, - ), - ), -); \ No newline at end of file + ], + ], +]; \ No newline at end of file