'ID', 'NAME' => 'NAME', ); protected $accountId; protected $pageId; /** * Account constructor. * * @param null|string $accountId Account ID. */ public function __construct($accountId = null) { $this->accountId = $accountId; parent::__construct(); } /** * Get profile cached. * * @return Retargeting\Response|array */ public function getProfileCached() { return $this->getProfile(); } /** * Get url account list. * * @return string */ public static function getUrlAccountList() { return static::URL_ACCOUNT_LIST; } /** * Get url info. * * @return string */ public static function getUrlInfo() { return static::URL_INFO; } public function loginCompletion() { return new Result(); } public function logout() { return new Result(); } public function hasPageAccount() { return true; } }