Файл vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php Вес запакованого файла 199b (199 b) Вес распакованого файла: 300b (300 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Dotenv\Repository\Adapter;
interface ReaderInterface
{
/**
* Read an environment variable, if it exists.
*
* @param non-empty-string $name
*
* @return \PhpOption\Option<string>
*/
public function read(string $name);
}