From 6da8beb30bcf5f4692aa539eb7af223f135143e6 Mon Sep 17 00:00:00 2001 From: Sven Wappler Date: Sun, 24 Dec 2017 00:10:08 +0100 Subject: [PATCH] source code beautification --- ext_emconf.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ext_emconf.php b/ext_emconf.php index df3f186..c4112fc 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -10,7 +10,7 @@ * writing. "version" and "dependencies" must not be touched! ***************************************************************/ -$EM_CONF[$_EXTKEY] = array( +$EM_CONF[$_EXTKEY] = [ 'title' => 'AB Test Pages', 'description' => 'With this extension, administrators can deliver different content for the same URL (AB test), depending on cookies or least showed page to realize a most accurate possible test.', 'category' => 'misc', @@ -23,16 +23,16 @@ $EM_CONF[$_EXTKEY] = array( 'clearCacheOnLoad' => true, 'version' => '0.1.0', 'constraints' => - array( + [ 'depends' => - array( + [ 'typo3' => '7.6.0-8.7.99', 'realurl' => '2.0.0-0.0.0', - ), + ], 'conflicts' => - array(), + [], 'suggests' => - array(), - ), -); + [], + ], +];