mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
17 lines
189 B
PHP
17 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Http\Web\Controllers;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/", name="web.index")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
|
|
}
|
|
|
|
}
|