/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/Lexer.php (1321B)
*/ public static function lex(string $content) { static $regex; if ($regex === null) { $regex = '(('.\implode(')|(', self::PATTERNS).'))A'; } $tokens = []; $offset = 0; while (isset($content[$offset])) { if (!\preg_match($regex, $content, $matches, 0, $offset)) { throw new \Error(\sprintf('Lexer encountered unexpected character [%s].', $content[$offset])); } $offset += \strlen($matches[0]); yield $matches[0]; } } }