|
@@ 241-245 (lines=5) @@
|
| 238 |
|
'allowedIPs' => $allowedIPs, |
| 239 |
|
]; |
| 240 |
|
|
| 241 |
|
if (file_exists(__DIR__.'/giiant.php')) { |
| 242 |
|
// Local configuration, if available |
| 243 |
|
$giiant = require __DIR__.'/giiant.php'; |
| 244 |
|
$config = \yii\helpers\ArrayHelper::merge($config, $giiant); |
| 245 |
|
} |
| 246 |
|
} |
| 247 |
|
|
| 248 |
|
if (file_exists(__DIR__.'/local.php')) { |
|
@@ 248-252 (lines=5) @@
|
| 245 |
|
} |
| 246 |
|
} |
| 247 |
|
|
| 248 |
|
if (file_exists(__DIR__.'/local.php')) { |
| 249 |
|
// Local configuration, if available |
| 250 |
|
$local = require __DIR__.'/local.php'; |
| 251 |
|
$config = \yii\helpers\ArrayHelper::merge($config, $local); |
| 252 |
|
} |
| 253 |
|
|
| 254 |
|
return $config; |
| 255 |
|
|