Remove unused private method in Dotenv

This commit is contained in:
Christophe Coevoet 2017-03-21 10:50:23 +01:00
parent 6643fe2fa8
commit f4a7418e3a

View File

@ -233,11 +233,6 @@ final class Dotenv
return $value;
}
private function skipWhitespace()
{
$this->cursor += strspn($this->data, " \t", $this->cursor);
}
private function skipEmptyLines()
{
if (preg_match('/(?:\s*+(?:#[^\n]*+)?+)++/A', $this->data, $match, null, $this->cursor)) {