503.php 329 B

123456789101112
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. require_once 'processorFactory.php';
  7. $processorFactory = new \Magento\Framework\Error\ProcessorFactory();
  8. $processor = $processorFactory->createProcessor();
  9. $response = $processor->process503();
  10. $response->sendResponse();