1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
factory.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Core\Oauth;
4
5use Bitrix\Calendar\Core\Base\SingletonTrait;
6use Bitrix\Main\LoaderException;
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}
static getInstance()
Определения base.php:26
getByName($name)
Определения factory.php:15
$name
Определения menu_edit.php:35