/home/techb158/dev.balacoffee.com/vendor/vlucas/phpdotenv/src/Parser
Edit: /home/techb158/dev.balacoffee.com/vendor/vlucas/phpdotenv/src/Parser/Entry.php (1014B)
name = $name;
$this->value = $value;
}
/**
* Get the entry name.
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Get the entry value.
*
* @return \PhpOption\Option<\Dotenv\Parser\Value>
*/
public function getValue()
{
/** @var \PhpOption\Option<\Dotenv\Parser\Value> */
return Option::fromValue($this->value);
}
}