From f37ac929ccfa733de32a50183ca84e78f287fd61 Mon Sep 17 00:00:00 2001 From: Jay Trees Date: Wed, 29 May 2024 17:17:31 +0200 Subject: [PATCH] refactor: fix code style --- src/config/config-sample.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/config/config-sample.php b/src/config/config-sample.php index 77c93a44..22a88233 100644 --- a/src/config/config-sample.php +++ b/src/config/config-sample.php @@ -33,18 +33,18 @@ define('ENV_IS_DEV', false); */ define( 'CHANNELS', - array( - array( + [ + [ 'branch' => 'stable', 'host' => 'wishthis.online', 'label' => __('Stable'), - ), - array( + ], + [ 'branch' => 'release-candidate', 'host' => 'rc.wishthis.online', 'label' => __('Release candidate'), - ), - ) + ], + ] ); /**