generated from Nodarx/template
13 lines
305 B
PHP
13 lines
305 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXM\ProviderImap\Client\Transport;
|
|
|
|
use KTXM\ProviderImap\Client\ConnectionConfig;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
interface ConnectionFactoryInterface
|
|
{
|
|
public function create(ConnectionConfig $config, ?LoggerInterface $logger = null): ConnectionInterface;
|
|
} |