EmptyController.class.php 499 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * lionfish 商城系统
  4. *
  5. * ==========================================================================
  6. * @link http://www.liofis.com/
  7. * @copyright Copyright (c) 2015 liofis.com.
  8. * @license http://www.liofis.com/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. ?>