9 lines
161 B
PHP
9 lines
161 B
PHP
<?php
|
|
|
|
use App\Services\ConfigCacheService;
|
|
|
|
if (!function_exists('config_cache')) {
|
|
function config_cache($key) {
|
|
return ConfigCacheService::get($key);
|
|
}
|
|
}
|