Files
apimacro/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php

16 lines
290 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace Dotenv\Repository\Adapter;
interface ReaderInterface extends AvailabilityInterface
{
/**
* Get an environment variable, if it exists.
*
* @param string $name
*
* @return \PhpOption\Option<string|null>
*/
public function get($name);
}