Skip to content

Commit

Permalink
Merge pull request #7985 from pjsde/fix-services-request
Browse files Browse the repository at this point in the history
fix: Services::request() should call AppServices instead static
  • Loading branch information
kenjis authored Sep 28, 2023
2 parents b949a2e + eb1a952 commit f62e6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Config/Services.php
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ public static function request(?App $config = null, bool $getShared = true)
}

// @TODO remove the following code for backward compatibility
return static::incomingrequest($config, $getShared);
return AppServices::incomingrequest($config, $getShared);
}

/**
Expand Down

0 comments on commit f62e6cf

Please sign in to comment.