Your IP : 18.222.60.197


Current Path : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/modules/seo/lib/businesssuite/
Upload File :
Current File : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/modules/seo/lib/businesssuite/abstractbase.php

<?php

namespace Bitrix\Seo\BusinessSuite;

use Bitrix\Seo\BusinessSuite;
use Bitrix\Seo\Retargeting;

abstract class AbstractBase extends Retargeting\BaseApiObject
{
	protected function getService() : IInternalService
	{
		return $this->service;
	}

	/**
	 * @param string $name
	 *
	 * @return string
	 */
	protected function getMethodName(string $name) : string
	{
		return $this->getService()->getMethodPrefix().'.'.$name;
	}
}