helpers.php 161 B

123456789
  1. <?php
  2. use App\Services\ConfigCacheService;
  3. if (!function_exists('config_cache')) {
  4. function config_cache($key) {
  5. return ConfigCacheService::get($key);
  6. }
  7. }