summaryrefslogtreecommitdiff
path: root/config/config.default.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-10-01 10:48:19 +0200
committermsquare <msquare@notrademark.de>2016-10-01 10:48:19 +0200
commitd5d2acc7d80920eef5f0ed779a3738a12d5db348 (patch)
treed2d7eb680c1ecaf72480893bba252ab2d9958804 /config/config.default.php
parent6dfefc3bb9f054c472156801e37300059444ecc7 (diff)
improve code style
Diffstat (limited to 'config/config.default.php')
-rw-r--r--config/config.default.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/config.default.php b/config/config.default.php
index a8f4f454..0297c679 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -48,10 +48,10 @@ $shift_sum_formula = "SUM(
)";
// voucher calculation
-$voucher_settings = array(
+$voucher_settings = [
"initial_vouchers" => 2,
"shifts_per_voucher" => 1
-);
+];
// weigh every shift the same
// $shift_sum_formula = "SUM(`end` - `start`)";
@@ -60,10 +60,10 @@ $voucher_settings = array(
$api_key = "";
// MySQL-Connection Settings
-$config = array(
+$config = [
'host' => "localhost",
'user' => "root",
'pw' => "",
'db' => "engelsystem"
-);
+];
?>