Blame view

backend/controllers/ReportController.php 294 Bytes
a3fa7958   Alex Savenko   base
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  /**
   * Created by PhpStorm.
   * User: Alex Savenko
   * Date: 28.12.2016
   * Time: 21:47
   */
  
  namespace backend\controllers;
  
  use yii\web\Controller;
  
  
  class ReportController extends Controller
  {
      public function actionIndex() {
          return $this->render('index', [
  
          ]);
      }
  }