global.php 537 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. use Magento\Framework\App\Bootstrap;
  7. use Magento\Framework\App\Filesystem\DirectoryList;
  8. use Magento\Setup\Mvc\Bootstrap\InitParamListener;
  9. return [
  10. InitParamListener::BOOTSTRAP_PARAM => array_merge(
  11. $_SERVER,
  12. [
  13. Bootstrap::INIT_PARAM_FILESYSTEM_DIR_PATHS => [
  14. DirectoryList::ROOT => [
  15. DirectoryList::PATH => BP
  16. ]
  17. ]
  18. ]
  19. )
  20. ];