From 9fa1421748557b70d3bf2161c56b449d6d50323f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 27 Nov 2019 06:01:13 +0100 Subject: [PATCH] Add console and index.php to fix the umask --- bin/console | 42 ++++++++++++++++++++++++++++++++++++++++++ public/index.php | 27 +++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 bin/console create mode 100644 public/index.php diff --git a/bin/console b/bin/console new file mode 100644 index 0000000..c0512bf --- /dev/null +++ b/bin/console @@ -0,0 +1,42 @@ +#!/usr/bin/env php +getParameterOption(['--env', '-e'], null, true)) { + putenv('APP_ENV='.$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = $env); +} + +if ($input->hasParameterOption('--no-debug', true)) { + putenv('APP_DEBUG='.$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = '0'); +} + +require dirname(__DIR__).'/config/bootstrap.php'; + +if ($_SERVER['APP_DEBUG']) { + umask(0002); + + if (class_exists(Debug::class)) { + Debug::enable(); + } +} + +$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']); +$application = new Application($kernel); +$application->run($input); diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..8891125 --- /dev/null +++ b/public/index.php @@ -0,0 +1,27 @@ +handle($request); +$response->send(); +$kernel->terminate($request, $response); -- 2.41.0