CacheServer.php 250 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/6/11
  6. * Time: 上午9:28
  7. */
  8. namespace common\api;
  9. use Yii;
  10. class CacheServer {
  11. public static function Cache()
  12. {
  13. return Yii::$app->cache;
  14. }
  15. }