From b2035a2fc3ff7a06f887e6dbffa3c605153ce389 Mon Sep 17 00:00:00 2001 From: Anatoliy Melnikov <5785276@gmail.com> Date: Sat, 31 Aug 2024 00:02:58 +0300 Subject: [PATCH] Fix code stile --- scripts/box/prepare-config.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/box/prepare-config.php b/scripts/box/prepare-config.php index 9bfdecc..8889f56 100644 --- a/scripts/box/prepare-config.php +++ b/scripts/box/prepare-config.php @@ -2,8 +2,17 @@ declare(strict_types=1); +/* + * This file is part of the box project. + * + * (c) Anatoliy Melnikov <5785276@gmail.com> + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + $configPath = __DIR__ . '/config.json'; -$config = json_decode(file_get_contents($configPath), true, 512, JSON_THROW_ON_ERROR); +$config = json_decode(file_get_contents($configPath), true, 512, \JSON_THROW_ON_ERROR); $config['base-path'] = dirname($configPath, 2);