source code beautification

This commit is contained in:
Sven Wappler 2017-12-24 00:10:08 +01:00
parent 6716f0f40f
commit 6da8beb30b

View file

@ -10,7 +10,7 @@
* writing. "version" and "dependencies" must not be touched! * writing. "version" and "dependencies" must not be touched!
***************************************************************/ ***************************************************************/
$EM_CONF[$_EXTKEY] = array( $EM_CONF[$_EXTKEY] = [
'title' => 'AB Test Pages', '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.', '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', 'category' => 'misc',
@ -23,16 +23,16 @@ $EM_CONF[$_EXTKEY] = array(
'clearCacheOnLoad' => true, 'clearCacheOnLoad' => true,
'version' => '0.1.0', 'version' => '0.1.0',
'constraints' => 'constraints' =>
array( [
'depends' => 'depends' =>
array( [
'typo3' => '7.6.0-8.7.99', 'typo3' => '7.6.0-8.7.99',
'realurl' => '2.0.0-0.0.0', 'realurl' => '2.0.0-0.0.0',
), ],
'conflicts' => 'conflicts' =>
array(), [],
'suggests' => 'suggests' =>
array(), [],
), ],
); ];