1C-Bitrix
25.700.0
Загрузка...
Поиск...
Не найдено
EncryptionType.php
См. документацию.
1
<?php
2
3
namespace
Bitrix\Ldap
;
4
5
enum
EncryptionType
:
int
6
{
7
case
None = 0;
8
case
Ssl = 1;
9
case
Tls = 2;
10
11
public
function
port
(): int
12
{
13
return
match ($this)
14
{
15
self::Ssl => 636,
16
default
=> 389,
17
};
18
}
19
20
public
function
scheme(): string
21
{
22
return
match($this)
23
{
24
self::Ssl =>
'ldaps'
,
25
default
=>
'ldap'
,
26
};
27
}
28
}
Bitrix\Ldap
Определения
EncryptionType.php:3
Bitrix\Ldap\EncryptionType
EncryptionType
Определения
EncryptionType.php:6
Bitrix\Ldap\port
@ port
Определения
EncryptionType.php:11
bitrix
modules
ldap
lib
EncryptionType.php
Создано системой
1.14.0