Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change self to static for alwaysUseConfig
  • Loading branch information
cosmastech authored Aug 3, 2026
commit 74b8123fee53a087f1560b6add07991c822a58a4
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function bootstrap(Application $app)
// we will need to spin through every configuration file and load them all.
$loadedFromCache = false;

if (self::$alwaysUseConfig !== null) {
if (static::$alwaysUseConfig !== null) {
$items = $app->call(self::$alwaysUseConfig);

$loadedFromCache = true;
Expand Down
Loading