1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
EncryptionType.php
См. документацию.
1<?php
2
3namespace Bitrix\Ldap;
4
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}
Определения EncryptionType.php:3
EncryptionType
Определения EncryptionType.php:6
@ port
Определения EncryptionType.php:11