0

array_map() expects parameter 1 to be a valid callback, class 'Search' does not have a method 'wishList'

 $shops = array_map(array($this, 'wishList'), $shops);

 function wishList($shops) {
        print_r(shops);
        $this->check_authentication(); 
        $user = $this->getUser();
        $shops->isWishList = $this->Wishlist_model->_isShopInMyWishList($shops->id, $user->id,6) ? true : false;
        return $shops;
    }
0

1 Answer 1

1

For what I see that's the issue, you just declared your wishList function not in the Search class, if you wanna do this your should write this:

$shops = array_map('wishList', $shops);

Or move you wishList function to your Search class

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.