* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PrestashopFacebook\Provider; interface GoogleCategoryProviderInterface { /** * @param int $categoryId * @param int $shopId * * @return array|null */ public function getGoogleCategory($categoryId, $shopId); /** * @param int $categoryId * @param int $langId * @param int $shopId * @param int $page * * @return array|null */ public function getGoogleCategoryChildren($categoryId, $langId, $shopId, $page); }