Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbeaty committed Dec 11, 2024
1 parent 30d89f7 commit e955640
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/code/core/Mage/Core/Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -1517,8 +1517,10 @@ public function getResourceModelInstance($modelAlias, $constructArguments = [])

/**
* Retrieve resource helper class name
*
* @return string|false
*/
public function getResourceHelperClassName(string $moduleAlias): string|false
public function getResourceHelperClassName(string $moduleAlias)
{
$connectionModel = $this->_getResourceConnectionModel($moduleAlias);
$modelClass = sprintf('%s/helper_%s', $moduleAlias, $connectionModel);
Expand Down

0 comments on commit e955640

Please sign in to comment.