CustomerController.php 532 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace appapi\local\local_modules\V1\controllers;
  10. use fecshop\app\appfront\modules\AppfrontController;
  11. use Yii;
  12. /**
  13. * @author Terry Zhao <2358269014@qq.com>
  14. * @since 1.0
  15. */
  16. class CustomerController extends \fecshop\app\appapi\modules\V1\controllers\CustomerController
  17. {
  18. public function actionIndex(){
  19. echo 1;exit;
  20. }
  21. }