Update start-gii.md

Update example for config Gii module.
This commit is contained in:
et-soft
2015-07-27 11:55:41 +03:00
parent d568236858
commit d20af7123f

View File

@ -23,7 +23,9 @@ $config = [ ... ];
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
];
}
```