1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
servicebase.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Sync\Managers;
4
5use Bitrix\Calendar\Core;
6use Bitrix\Calendar\Sync\Connection\Connection;
7
8abstract class ServiceBase implements ServiceInterface
9{
17 protected string $serviceName;
18
23 {
24 $this->connection = $connection;
25 $this->serviceName = $this->connection->getVendor()->getCode();
26 }
27
31 public function getServiceName(): string
32 {
33 return $this->serviceName;
34 }
35
36}
__construct(Connection $connection)
Определения servicebase.php:22