14a09168
Alex Savenko
init commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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;
//
// }
}
}
|