File "ReaderInterface.php"
Full Path: /home/isoftco/public_html/hrm/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php
File size: 290 bytes
MIME-type: text/x-php
Charset: utf-8
<?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);
}