Skip to content

Commit

Permalink
Added docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Feb 11, 2024
1 parent 00aeb54 commit bf007ba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/code/core/Mage/Core/Model/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,11 @@ public function cleanType($typeCode)
return $this;
}

public function saveUpdateAt($typeCode)
/**
* @param string $typeCode
* @return void
*/
public function saveUpdateAt($typeCode): void
{
$path = self::XML_PATH_TYPES . '/' . $typeCode . '/tags';
$tagsConfig = Mage::getConfig()->getNode($path);
Expand Down

0 comments on commit bf007ba

Please sign in to comment.