Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

unit.php 508B

8 år sedan
12345678910111213141516
  1. <?php
  2. /**
  3. * Application configuration for frontend 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 . '/frontend/config/main.php'),
  9. require(YII_APP_BASE_PATH . '/frontend/config/main-local.php'),
  10. require(dirname(__DIR__) . '/config.php'),
  11. require(dirname(__DIR__) . '/unit.php'),
  12. require(__DIR__ . '/config.php'),
  13. [
  14. ]
  15. );