1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Label.php
См. документацию.
1<?php
2
3namespace Bitrix\Sale\Label;
4
5class Label
6{
7 public function __construct(private string $name, private string $value)
8 {
9 }
10
11 public function getName(): string
12 {
13 return $this->name;
14 }
15
16 public function getValue(): string
17 {
18 return $this->value;
19 }
20}
Определения Label.php:6
getName()
Определения Label.php:11
getValue()
Определения Label.php:16
__construct(private string $name, private string $value)
Определения Label.php:7
$name
Определения menu_edit.php:35