<?php
declare(strict_types=1);
namespace DotenvRepositoryAdapter;
interface AdapterInterface extends ReaderInterface, WriterInterface
{
/**
* Create a new instance of the adapter, if it is available.
*
* @return PhpOptionOption<DotenvRepositoryAdapterAdapterInterface>
*/
public static function create();
}