mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
20 lines
308 B
PHP
20 lines
308 B
PHP
<?php
|
|
|
|
namespace App\Http\Web\Controllers;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/", name="web.index")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$this->seo->setKeywords($this->site->keywords);
|
|
$this->seo->setDescription($this->site->description);
|
|
|
|
|
|
}
|
|
|
|
}
|