Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
malder1975 committed Oct 18, 2016
1 parent b7a02fd commit f74514a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion frontend/controllers/VmsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,22 @@

namespace frontend\controllers;

class VmsController extends \yii\web\Controller
use yii\web\Controller;

class VmsController extends Controller
{
public function actionIndex()
{
return $this->render('index');
}

public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
];
}

}

0 comments on commit f74514a

Please sign in to comment.