codestyle

This commit is contained in:
ellynoize 2025-03-21 09:32:54 +03:00
parent ee53766913
commit 15e99df509
2 changed files with 8 additions and 4 deletions

View file

@ -20,7 +20,10 @@ class ModelExtensionRetailcrmInventories extends Model {
$offers = [];
foreach ($products as $product) {
$offers[] = ['externalId' => $product['product_id'], 'stores' => [['code' => $store, 'available' => $product['quantity']]]];
$offers[] = [
'externalId' => $product['product_id'],
'stores' => [['code' => $store, 'available' => $product['quantity']]]
];
}
$packs = array_chunk($offers, 50);
@ -33,7 +36,7 @@ class ModelExtensionRetailcrmInventories extends Model {
public function sendToCrm($pack) {
$inventory_manager = $this->retailcrm->getInventoryManager();
return $inventory_manager->storeInventoriesUpload($pack);;
return $inventory_manager->storeInventoriesUpload($pack);
}
}

View file

@ -2,8 +2,9 @@
namespace retailcrm\service;
class InventoryManager {
private $api;
class InventoryManager
{
private $api;
public function __construct(\RetailcrmProxy $api) {
$this->api = $api;