generated from Nodarx/template
ad6b7c5eba
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
21 lines
451 B
PHP
21 lines
451 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace KTXM\ProviderImap\Smtp\Transport;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
final class SocketConnectionFactory implements ConnectionFactoryInterface
|
|
{
|
|
public function create(?LoggerInterface $logger = null): ConnectionInterface
|
|
{
|
|
return new SocketConnection($logger);
|
|
}
|
|
}
|