vendor/autoload_runtime.php line 30

Open in your IDE?
  1. <?php
  2. // autoload_runtime.php @generated by Symfony Runtime
  3. if (true === (require_once __DIR__.'/autoload.php') || empty($_SERVER['SCRIPT_FILENAME'])) {
  4.     return;
  5. }
  6. $app = require $_SERVER['SCRIPT_FILENAME'];
  7. if (!is_object($app)) {
  8.     throw new TypeError(sprintf('Invalid return value: callable object expected, "%s" returned from "%s".'get_debug_type($app), $_SERVER['SCRIPT_FILENAME']));
  9. }
  10. $runtime $_SERVER['APP_RUNTIME'] ?? $_ENV['APP_RUNTIME'] ?? 'Symfony\\Component\\Runtime\\SymfonyRuntime';
  11. $runtime = new $runtime(($_SERVER['APP_RUNTIME_OPTIONS'] ?? $_ENV['APP_RUNTIME_OPTIONS'] ?? []) + [
  12.   'dotenv_overload' => true,
  13.   'project_dir' => dirname(__DIR__1),
  14. ]);
  15. [$app$args] = $runtime
  16.     ->getResolver($app)
  17.     ->resolve();
  18. $app $app(...$args);
  19. exit(
  20.     $runtime
  21.         ->getRunner($app)
  22.         ->run()
  23. );