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