LandingController.php 473 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: vitaliy
 * Date: 26.01.16
 * Time: 13:30
 */

namespace frontend\controllers;

use yii\web\Controller;
use yii\web\NotFoundHttpException;

class LandingController extends Controller{

    public function actionView($view)
    {
//        try{

            return $this->render($view,[]);
//
//        }
//        catch(\yii\base\InvalidParamException $e){
//
//            throw new NotFoundHttpException;
//
//        }

    }

}