pixelfed/pixelfed

View on GitHub
app/helpers.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use App\Services\ConfigCacheService;

if (!function_exists('config_cache')) {
    function config_cache($key) {
        return ConfigCacheService::get($key);
    }
}