Logo white

Administrator / new_rukzachok-1

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • new_rukzachok-1
  • backend
  • controllers
  • ReportController.php
  • ga
    8d4b0a73
    Alex Savenko authored
    2017-01-04 15:14:10 +0200  
    Browse Code ยป
ReportController.php 398 Bytes
Edit Raw Blame History
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
<?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', [
        ]);

    }

    public function actionCallback() {

        return $this->render('callback', [
        ]);

    }
}