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

  1. <?php
  2. namespace api\controllers;
  3. use yii\web\Controller;
  4. /**
  5. * Created by PhpStorm.
  6. * User: iron
  7. * Date: 2018/5/25
  8. * Time: 16:42
  9. */
  10. class SiteController extends Controller
  11. {
  12. public function actions() {
  13. return [
  14. 'error' => [
  15. 'class' => 'yii\web\ErrorAction',
  16. ],
  17. ];
  18. }
  19. }