16 lines
208 B
PHP
Executable File
16 lines
208 B
PHP
Executable File
<?php
|
|
|
|
namespace app\controller\api;
|
|
|
|
use laytp\BaseController;
|
|
|
|
/**
|
|
* @ApiInternal ()
|
|
*/
|
|
class Index extends BaseController
|
|
{
|
|
public function index()
|
|
{
|
|
return redirect('/api.html');
|
|
}
|
|
} |