2022-08-19 19:48:37 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\mobile\controller;
|
|
|
|
|
|
|
|
|
|
use app\HomeController;
|
2022-11-28 19:11:12 +08:00
|
|
|
use support\Response;
|
2022-08-19 19:48:37 +08:00
|
|
|
|
|
|
|
|
class Index extends HomeController
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 手机端控制器
|
2022-11-28 19:11:12 +08:00
|
|
|
* @return Response
|
2022-08-19 19:48:37 +08:00
|
|
|
*/
|
2022-11-28 19:11:12 +08:00
|
|
|
public function index(): Response
|
2022-08-19 19:48:37 +08:00
|
|
|
{
|
|
|
|
|
return response('Hello swift Mobile!');
|
|
|
|
|
}
|
|
|
|
|
}
|