summaryrefslogtreecommitdiff
path: root/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php
blob: 5604398a585c5c069123abb136e090cb3f36c068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Dotenv\Repository\Adapter;

interface AdapterInterface extends ReaderInterface, WriterInterface
{
    /**
     * Create a new instance of the adapter, if it is available.
     *
     * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
     */
    public static function create();
}