/home/techb158/dev.balacoffee.com/vendor/vlucas/phpdotenv/src/Parser
NameSizeModeActions
Entry.php10140644editdlrm
EntryParser.php124480644editdlrm
Lexer.php12720644editdlrm
Lines.php31470644editdlrm
Parser.php17470644editdlrm
ParserInterface.php3340644editdlrm
Value.php15880644editdlrm
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); } }