16 lines
300 B
PHP
16 lines
300 B
PHP
<?php
|
|
|
|
namespace Dotenv\Repository\Adapter;
|
|
|
|
interface ReaderInterface extends AvailabilityInterface
|
|
{
|
|
/**
|
|
* Get an environment variable, if it exists.
|
|
*
|
|
* @param non-empty-string $name
|
|
*
|
|
* @return \PhpOption\Option<string|null>
|
|
*/
|
|
public function get($name);
|
|
}
|