ReaderInterface.php 290 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?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); }