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,27 @@
<?php
declare(strict_types=1);
namespace Dotenv\Repository\Adapter;
interface WriterInterface
{
/**
* Write to an environment variable, if possible.
*
* @param non-empty-string $name
* @param string $value
*
* @return bool
*/
public function write(string $name, string $value);
/**
* Delete an environment variable, if possible.
*
* @param non-empty-string $name
*
* @return bool
*/
public function delete(string $name);
}