Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/seo/lib/checkout/ |
Upload File : |
<?php namespace Bitrix\Seo\Checkout; /** * Class BaseApiObject * @package Bitrix\Seo\Checkout */ class BaseApiObject { const TYPE_CODE = ''; /** @var Request $request */ protected $request; /** @var Service $service */ protected $service; /** * BaseApiObject constructor. */ public function __construct() { $this->request = Request::create(static::TYPE_CODE); } /** * @return Request */ public function getRequest() { return $this->request; } /** * @param Request $request * @return $this */ public function setRequest(Request $request) { $this->request = $request; return $this; } /** * @param $type * @param null $parameters * @param IService|null $service * @return static * @throws \Bitrix\Main\ArgumentOutOfRangeException */ public static function create($type, $parameters = null, IService $service = null) { $instance = Factory::create(get_called_class(), $type, $parameters); if ($service) { $instance->setService($service); } return $instance; } /** * @param IService $service * @return $this * @throws \Bitrix\Main\SystemException */ public function setService(IService $service) { $this->service = $service; $this->request->setAuthAdapter($this->service->getAuthAdapter(static::TYPE_CODE)); return $this; } }