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;
|
|
|
|
}
|