1
0
mirror of synced 2025-01-25 01:31:41 +03:00
DeliveryModuleBundle/Service/RetailCrmClientFactoryInterface.php
2020-02-19 19:00:09 +03:00

13 lines
288 B
PHP

<?php
namespace RetailCrm\DeliveryModuleBundle\Service;
use App\Entity\Account;
use Psr\Log\LoggerInterface;
use RetailCrm\ApiClient;
interface RetailCrmClientFactoryInterface
{
public function createRetailCrmClient(Account $account, ?LoggerInterface $logger = null): ApiClient;
}