Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
queue.php
1<?php
2
4
6use \Bitrix\Calendar\Core\Queue\Interfaces;
7
9{
10 private int $id;
11 private string $name;
12
13 public function __construct(int $id, string $name)
14 {
15 $this->id = $id;
16 $this->name = $name;
17 }
18
22 public function getQueueName(): string
23 {
24 return $this->name;
25 }
26
30 public function getQueueId(): int
31 {
32 return $this->id;
33 }
34
38 public function getId(): int
39 {
40 return $this->getQueueId();
41 }
42}
__construct(int $id, string $name)
Definition queue.php:13