<?php json_decode( string $json, ?bool $associative = null, int $depth = 512, int $flags = 0): mixed
<?php if (file_exists($configFilePath)) { $content = (string)file_get_contents($configFilePath); $options = json_decode($content, true) ?? []; } return $options;