* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ class WishlistRepository { public function getAllWishlistsProductID() { return (int) Db::getInstance() ->getRow('SELECT `id_product` FROM `' . _DB_PREFIX_ . 'wishlist_product`'); } }