Commit 8d23d4c7 by Qiang Xue

Added namespace to the controllers of the bootstrap app.

parent c10fe193
......@@ -4,6 +4,7 @@ return array(
'id' => 'bootstrap',
'basePath' => dirname(__DIR__),
'preload' => array('log'),
'controllerNamespace' => 'app\controllers',
'modules' => array(
// 'debug' => array(
// 'class' => 'yii\debug\Module',
......
<?php
namespace app\controllers;
use yii\web\Controller;
use app\models\LoginForm;
use app\models\ContactForm;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment