Skip to content
  • This project
    • Loading...
  • Sign in

Cong.Zhao / musician-api.hikoon.com

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • musician-api.hikoon.com
  • app
  • Helper
  • CacheKeyTools.php
  • lemon's avatar
    发票 · 4b472f54
    4b472f54
    lemon authored 2021-11-14 20:51:15 +0800
CacheKeyTools.php 391 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<?php


namespace App\Helper;


/**
 * Class CacheKeyTools
 * @package App\Helper
 */
class CacheKeyTools
{
    /**
     * @return mixed
     */
    public static function billsSync()
    {
        return config('cache.key')['bills_sync'];
    }

    /**
     * @return mixed
     */
    public static function channelname()
    {
        return config('cache.key')['channelname'];
    }

}