| Current Path : /home/jeromecohp/www/plugins/system/yooessentials/modules/api/src/Facebook/ |
| Current File : /home/jeromecohp/www/plugins/system/yooessentials/modules/api/src/Facebook/FacebookApiInterface.php |
<?php
/**
* @package Essentials YOOtheme Pro (Freemium) 2.0.19 build 1026.0920
* @author ZOOlanders https://www.zoolanders.com
* @copyright Copyright (C) Joolanders, SL
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
namespace ZOOlanders\YOOessentials\Api\Facebook;
interface FacebookApiInterface
{
public function page(string $pageId): array;
public function pages(string $userId): array;
public function posts(string $userOrPageId, array $filters = []): array;
public function photos(string $userOrPageId, array $filters = []): array;
public function reviews(string $userOrPageId, array $filters = []): array;
}