Blame view

app-wx/modules/order/controllers/CustomerBaseController.php 453 Bytes
3a892ee0   xu   app-wx(v0.1.0 bui...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace app\wx\modules\order\controllers;

use Yii;
use app\wx\controllers\BaseController as AppBaseController;

/**
 * Class BaseController
 * @package app\wx\modules\order\controllers
 */
class CustomerBaseController extends AppBaseController
{
    public $layout = 'main';

    /**
     * @throws yii\web\BadRequestHttpException
     */
    public function init()
    {
        parent::init(); // TODO: Change the autogenerated stub

    }
}