Файл vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php Вес запакованого файла 225b (225 b) Вес распакованого файла: 518b (518 b) Метод сжатия: 8
<?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);
}