EmptyController.class.php 499 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * 狮子喵icfruit.cn
  4. *
  5. * ==========================================================================
  6. * @link https://www.icfruit.cn/
  7. * @copyright Copyright (c) 2015 liofis.com.
  8. * @license https://www.icfruit.cn/license.html License
  9. * ==========================================================================
  10. *
  11. * @author fish
  12. *
  13. */
  14. namespace Admin\Controller;
  15. class EmptyController extends CommonController{
  16. function index(){
  17. die('建设中。。。');
  18. }
  19. }
  20. ?>