Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
factory.php
1<?php
2
4
5use Bitrix\Calendar\Core\Base\SingletonTrait;
7
8class Factory
9{
10 use SingletonTrait;
11
15 public function getByName($name): Base|null
16 {
17 return match ($name)
18 {
19 'google' => Google::getInstance(),
20 'office365' => Office365::getInstance(),
21 default => null,
22 };
23 }
24}