Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
storetree.php
1<?php
3
5
6
12final class StoreTree extends InventoryTree
13{
14 public function push(StoreItem $item): void
15 {
16 $this->append($item);
17 }
18
19 public function getByHash(string $hash): ?StoreItem
20 {
21 foreach ($this->getIterator() as $item)
22 {
23 if ($item->getHash() === $hash)
24 {
25 return $item;
26 }
27 }
28
29 return null;
30 }
31}