Files
2024-10-26 16:26:10 +08:00

18 lines
361 B
PHP

<?php
declare(strict_types=1);
/**
* 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
*/
use function Hyperf\Support\env;
return [
//是否开启定时任务
'enable' => env('CRONTAB_ENABLE', false),
];