Skip to content

Commit

Permalink
Fixed mixed return types
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichel committed May 9, 2020
1 parent 5c7b0d4 commit f898e09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected function _construct()
*
* @param Mage_Core_Model_Store $store
* @param int|array $parentIds
* @return mixed
* @return array|false
*/
public function getChildProductIds($store, $parentIds)
{
Expand All @@ -101,7 +101,7 @@ public function getChildProductIds($store, $parentIds)
*
* @param Mage_Core_Model_Store $store
* @param int|array $childIds
* @return mixed
* @return array|false
*/
public function getParentProductIds($store, $childIds)
{
Expand All @@ -123,7 +123,7 @@ public function getParentProductIds($store, $childIds)
* @param array $settings
* @param int $type
* @param int|array $suppliedId
* @return mixed
* @return array
*/
protected function fetchLinkInformation($store, $settings, $type, $suppliedId)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function getAttributeData($products, $attributes, $store)
* @param string $whereField
* @param int|array $id
* @param array $additionalWheres
* @return mixed
* @return array
*/
public function fetchLinkInformation($store, $table, $idField, $whereField, $id, $additionalWheres = array())
{
Expand Down

0 comments on commit f898e09

Please sign in to comment.