Skip to content

Commit

Permalink
Fix code stile
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeliot-Tm committed Aug 30, 2024
1 parent 0c96d14 commit b2035a2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion scripts/box/prepare-config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

declare(strict_types=1);

/*
* This file is part of the box project.
*
* (c) Anatoliy Melnikov <[email protected]>
*
* 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);

Expand Down

0 comments on commit b2035a2

Please sign in to comment.