1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
phone.php
См. документацию.
1<?php
2
3namespace Bitrix\Sale\Delivery\Services;
4
10final class Phone
11{
13 private $type;
14
16 private $value;
17
23 public function __construct(string $type, string $value)
24 {
25 $this->type = $type;
26 $this->value = $value;
27 }
28
32 public function getType(): string
33 {
34 return $this->type;
35 }
36
40 public function getValue(): string
41 {
42 return $this->value;
43 }
44}
$type
Определения options.php:106
__construct(string $type, string $value)
Определения phone.php:23