refactor: fix code style

This commit is contained in:
Jay Trees 2024-05-29 17:17:31 +02:00
parent cf9e699ec9
commit f37ac929cc

View file

@ -33,18 +33,18 @@ define('ENV_IS_DEV', false);
*/ */
define( define(
'CHANNELS', 'CHANNELS',
array( [
array( [
'branch' => 'stable', 'branch' => 'stable',
'host' => 'wishthis.online', 'host' => 'wishthis.online',
'label' => __('Stable'), 'label' => __('Stable'),
), ],
array( [
'branch' => 'release-candidate', 'branch' => 'release-candidate',
'host' => 'rc.wishthis.online', 'host' => 'rc.wishthis.online',
'label' => __('Release candidate'), 'label' => __('Release candidate'),
), ],
) ]
); );
/** /**