Subscribe.php 407 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 模板消息
  7. */
  8. namespace app\common\facade;
  9. use think\Facade;
  10. class Subscribe extends Facade{
  11. protected static function getFacadeClass()
  12. {
  13. return 'app\common\facade\library\Subscribe';
  14. }
  15. }