Blame view

frontend/controllers/PageController.php 306 Bytes
bb7d15c5   andryeyev   Итерация 3 (Templ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <?php
  
  //namespace frontend\controllers; 
    
  use yii\web\Controller;
  
  /**
   * PageController controller
   */
  class PageController extends Controller
  { 
      public function actions()
      {
          die;
      }
  
      public function actionIndex()
      {
          die;
          return $this->render('index');
      }
  }