Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
template.php
1<?php
2
4
12{
14 private $type;
16 private $template;
17
23 public function __construct(string $type, string $template)
24 {
25 $this->type = $type;
26 $this->template = $template;
27 }
28
33 public function getType(): string
34 {
35 return $this->type;
36 }
37
41 public function getTemplate(): string
42 {
43 return $this->template;
44 }
45}
__construct(string $type, string $template)
Definition template.php:23