1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
storetree.php
См. документацию.
1<?php
2namespace Bitrix\Catalog\Product\Store\BatchBalancer;
3
4use Bitrix\Catalog\Product\Store\BatchBalancer\Entity\StoreItem;
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}
$hash
Определения ajax_redirector.php:8