Release memory for the parsed data after parsing

This commit is contained in:
Christophe Coevoet 2017-03-21 10:26:02 +01:00
parent 6643fe2fa8
commit 518f618d33

View File

@ -121,6 +121,8 @@ final class Dotenv
return $this->values;
} finally {
$this->values = array();
$this->data = null;
$this->path = null;
}
}