Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichel committed Dec 13, 2024
1 parent 31ff920 commit 1aedd15
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/Mage.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,10 +577,10 @@ public static function getControllerInstance($class, $request, $response, array
}

/**
* Retrieve resource vodel object singleton
* Retrieve resource model object singleton
*
* @param string $modelClass
* @return object
* @return Mage_Core_Model_Resource_Db_Collection_Abstract
*/
public static function getResourceSingleton($modelClass = '', array $arguments = [])
{
Expand Down
4 changes: 2 additions & 2 deletions app/code/core/Mage/Core/Model/Abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ protected function _beforeSave()
* Get list of cache tags applied to model object.
* Return false if cache tags are not supported by model
*
* @return array | false
* @return array|false
*/
public function getCacheTags()
{
Expand All @@ -467,7 +467,7 @@ public function getCacheTags()
/**
* Get cache tags associated with object id
*
* @return array|bool
* @return array|false
*/
public function getCacheIdTags()
{
Expand Down
2 changes: 1 addition & 1 deletion app/code/core/Mage/Core/Model/Resource/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected function _loadVersionData($needType)
* Get Module version from DB
*
* @param string $resName
* @return bool|string
* @return string|false
* @SuppressWarnings(PHPMD.CamelCaseVariableName)
*/
public function getDbVersion($resName)
Expand Down
1 change: 1 addition & 0 deletions app/code/core/Mage/Eav/Model/Entity/Attribute.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*
* @method Mage_Eav_Model_Resource_Entity_Attribute _getResource()
* @method Mage_Eav_Model_Resource_Entity_Attribute getResource()
* @method Mage_Eav_Model_Resource_Entity_Attribute_Collection getCollection()
* @method Mage_Eav_Model_Resource_Entity_Attribute_Collection getResourceCollection()
*
* @method int getAttributeGroupId()
Expand Down

0 comments on commit 1aedd15

Please sign in to comment.