Template.php 423 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by CRMEB.
  4. * Copyright (c) 2017~2019 http://www.crmeb.com All rights reserved.
  5. * Author: liaofei <136327134@qq.com>
  6. * Date: 2019/4/3 16:36
  7. */
  8. namespace app\core\util;
  9. use app\core\traits\LogicTrait;
  10. /** 模版消息类
  11. * Class Template
  12. * @package app\core\util
  13. */
  14. class Template
  15. {
  16. use LogicTrait;
  17. protected $providers=[
  18. 'routine_two'=>ProgramTemplateService::class,
  19. ];
  20. }