/home/techb158/immovalet.com/vendor/vlucas/phpdotenv/src/Parser
NameSizeModeActions
Entry.php10140644editdlrm
EntryParser.php118680644editdlrm
Lexer.php13210644editdlrm
Lines.php30700644editdlrm
Parser.php16920644editdlrm
ParserInterface.php3340644editdlrm
Value.php15880644editdlrm
Edit: /home/techb158/immovalet.com/vendor/vlucas/phpdotenv/src/Parser/Parser.php (1692B)
mapError(static function () { return 'Could not split into separate lines.'; })->flatMap(static function (array $lines) { return self::process(Lines::process($lines)); })->mapError(static function (string $error) { throw new InvalidFileException(\sprintf('Failed to parse dotenv file. %s', $error)); })->success()->get(); } /** * Convert the raw entries into proper entries. * * @param string[] $entries * * @return \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Entry[],string> */ private static function process(array $entries) { /** @var \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Entry[],string> */ return \array_reduce($entries, static function (Result $result, string $raw) { return $result->flatMap(static function (array $entries) use ($raw) { return EntryParser::parse($raw)->map(static function (Entry $entry) use ($entries) { return \array_merge($entries, [$entry]); }); }); }, Success::create([])); } }