/home/techb158/ileadtechnology.com/SSM/vendor/vlucas/phpdotenv/src/Loader
NameSizeModeActions
Lines.php32020644editdlrm
Loader.php35050644editdlrm
LoaderInterface.php5030644editdlrm
Parser.php71680644editdlrm
Value.php15060644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/vlucas/phpdotenv/src/Loader/Lines.php (3202B)
1; } /** * Get all pairs of adjacent characters within the line. * * @param string $line * * @return array{array{string,string|null}} */ private static function getCharPairs($line) { $chars = str_split($line); /** @var array{array{string,string|null}} */ return array_map(null, $chars, array_slice($chars, 1)); } /** * Determine if the line in the file is a comment or whitespace. * * @param string $line * * @return bool */ private static function isCommentOrWhitespace($line) { if (trim($line) === '') { return true; } $line = ltrim($line); return isset($line[0]) && $line[0] === '#'; } }