1
0
mirror of synced 2025-01-09 10:47:08 +03:00
DeliveryModuleBundle/Service/RetailCrmClientFactoryInterface.php

13 lines
321 B
PHP
Raw Normal View History

2019-12-26 17:47:33 +03:00
<?php
namespace RetailCrm\DeliveryModuleBundle\Service;
use Psr\Log\LoggerInterface;
use RetailCrm\ApiClient;
2020-08-03 15:54:38 +03:00
use RetailCrm\DeliveryModuleBundle\Model\Entity\Account;
2019-12-26 17:47:33 +03:00
interface RetailCrmClientFactoryInterface
{
public function createRetailCrmClient(Account $account, ?LoggerInterface $logger = null): ApiClient;
}