Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
item.php
1<?php
2
3
5
6
8
9class Item
10{
11 protected $internalIndex;
12 protected $cmd;
13
14 public function __construct(Cmd\Base $cmd)
15 {
16 $this->cmd = $cmd;
17 }
18
19 public static function create(Cmd\Base $cmd)
20 {
21 return new static($cmd);
22 }
23
25 {
26 $this->internalIndex = $internalIndex;
27 return $this;
28 }
29
30 public function getInternalIndex()
31 {
33 }
34
35 public function getCmd()
36 {
37 return $this->cmd;
38 }
39}