You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 satır
505B

  1. <?php
  2. /**
  3. * Application configuration for backend unit tests
  4. */
  5. return yii\helpers\ArrayHelper::merge(
  6. require(YII_APP_BASE_PATH . '/common/config/main.php'),
  7. require(YII_APP_BASE_PATH . '/common/config/main-local.php'),
  8. require(YII_APP_BASE_PATH . '/backend/config/main.php'),
  9. require(YII_APP_BASE_PATH . '/backend/config/main-local.php'),
  10. require(dirname(__DIR__) . '/config.php'),
  11. require(dirname(__DIR__) . '/unit.php'),
  12. require(__DIR__ . '/config.php'),
  13. [
  14. ]
  15. );