![yii](https://habrastorage.org/r/w120/webt/5a/6c/2b/5a6c2bb5533ac294317863.png)
Yii
4
Вклад в тег
/* Режим разработки */
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
defined('YII_ENV_TEST') or define('YII_ENV_TEST', true);
if (YII_ENV_DEV) {
/* Debug */
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
'allowedIPs' => ['172.16.0.2', '::1'],
];
/* GII */
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'allowedIPs' => ['172.16.0.2', '::1'],
];
}