CatchCacheKeys.php 478 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @filename CacheKeys.php
  5. * @createdAt 2020/1/17
  6. * @project https://github.com/yanwenwu/catch-admin
  7. * @document http://doc.catchadmin.com
  8. * @author JaguarJack <njphper@gmail.com>
  9. * @copyright By CatchAdmin
  10. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  11. */
  12. namespace catcher;
  13. class CatchCacheKeys
  14. {
  15. public const USER_PERMISSIONS = 'user_permissions_';
  16. public const TRIE_TREE = 'trie_tree';
  17. }