Update dependencies + cp vendor/*/src src/

This commit is contained in:
billz
2024-02-27 11:48:37 +01:00
parent 8ecd542eae
commit def8be88fb
49 changed files with 4542 additions and 2 deletions

View File

@@ -0,0 +1,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();
}