This repository was archived by the owner on Feb 7, 2025. It is now read-only.
This repository was archived by the owner on Feb 7, 2025. It is now read-only.
Добавить в BatchInterface метод updateEntityItems #268
Closed
Description
Добавить в BatchInterface метод updateEntityItems по аналогии с
/**
* Add entity items with batch call
*
* @param string $apiMethod
* @param array<int, array> $entityItems
*
* @return Generator<int, ResponseData>|ResponseData[]
* @throws BaseException
*/
public function addEntityItems(string $apiMethod, array $entityItems): Generator;
/**
* Delete entity items with batch call
*
* @param string $apiMethod
* @param array<int, int> $entityItemId
*
* @return Generator<int, ResponseData>|ResponseData[]
* @throws BaseException
*/
public function deleteEntityItems(string $apiMethod, array $entityItemId): Generator;