File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
src/Services/CRM/Item/Result Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1313 - ` list ` Get a list of custom types crm.type.list
1414 - ` delete ` This method deletes an existing smart process by the identifier id
1515
16+ ### Fixed
17+
18+ - Fixed wrong offset in ` ItemsResult ` [ see details] ( https://github.com/bitrix24/b24phpsdk/issues/279 )
19+
20+ ### Statistics
21+
22+ ```
23+ Bitrix24 API-methods count:
24+ Supported in bitrix24-php-sdk methods count:
25+ Coverage percentage:
26+ ```
27+
1628## 1.7.0 - 2025.10.08
1729
1830### Added
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class ItemsResult extends AbstractResult
2525 public function getItems (): array
2626 {
2727 $ items = [];
28- foreach ($ this ->getCoreResponse ()->getResponseData ()->getResult () as $ item ) {
28+ foreach ($ this ->getCoreResponse ()->getResponseData ()->getResult ()[ ' items ' ] as $ item ) {
2929 $ items [] = new ItemItemResult ($ item );
3030 }
3131
You can’t perform that action at this time.
0 commit comments