Skip to content

Commit be96f5f

Browse files
committed
fix: error message
1 parent bab8f77 commit be96f5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/HTTP/IncomingRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,9 +486,9 @@ public function setPath(string $path, ?App $config = null)
486486
} elseif (! is_cli()) {
487487
// Do not change exit() to exception; Request is initialized before
488488
// setting the exception handler, so if an exception is raised, an
489-
// error will be displayed in the production environment.
489+
// error will be displayed even if in the production environment.
490490
// @codeCoverageIgnoreStart
491-
exit('You have an empty or invalid base URL. The baseURL value must be set in Config\App.php, or through the .env file.');
491+
exit('You have an empty or invalid baseURL. The baseURL value must be set in app/Config/App.php, or through the .env file.');
492492
// @codeCoverageIgnoreEnd
493493
}
494494

0 commit comments

Comments
 (0)