Files

22 lines
501 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
use function Hyperf\Support\env;
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
return [
'debug' => false,
'host' => env('TOOLS_HOST', 'http://127.0.0.1'),
'host_test' => env('TOOLS_HOST', 'http://127.0.0.1'),
'token' => env('TOOLS_TOKEN', ''),
'token_test' => env('TOOLS_TOKEN', '')
];