We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad4024 commit 7b70211Copy full SHA for 7b70211
bin/bootstrap.php
@@ -20,7 +20,7 @@
20
$basePath = $_SERVER['APP_BASE_PATH'] ?? $_ENV['APP_BASE_PATH'] ?? $serverState['octaneConfig']['base_path'] ?? null;
21
22
if (! is_string($basePath)) {
23
- Octane::writeError('Cannot find application base path.');
+ die('Cannot find application base path.');
24
25
exit(11);
26
}
@@ -40,7 +40,7 @@
40
$vendorDir = $_ENV['COMPOSER_VENDOR_DIR'] ?? "{$basePath}/vendor";
41
42
if (! is_file($autoload_file = "{$vendorDir}/autoload.php")) {
43
- Octane::writeError("Composer autoload file was not found. Did you install the project's dependencies?");
+ die("Composer autoload file was not found. Did you install the project's dependencies?");
44
45
exit(10);
46
0 commit comments