You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
340 B
22 lines
340 B
<?php
|
|
|
|
namespace api\controllers;
|
|
|
|
use yii\web\Controller;
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: iron
|
|
* Date: 2018/5/25
|
|
* Time: 16:42
|
|
*/
|
|
class SiteController extends Controller
|
|
{
|
|
public function actions() {
|
|
return [
|
|
'error' => [
|
|
'class' => 'yii\web\ErrorAction',
|
|
],
|
|
];
|
|
}
|
|
}
|