Skip to content

Commit

Permalink
Merge pull request #9 from enygma/protected-doparse
Browse files Browse the repository at this point in the history
Making doParse protected (for issue #8)
  • Loading branch information
m1 authored May 16, 2018
2 parents 28c69af + 5059dc8 commit 3589eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static function parse($content, array $context = array())
*
* @return array The .env contents
*/
private function doParse($content)
protected function doParse($content)
{
$raw_lines = array_filter($this->makeLines($content), 'strlen');

Expand Down

0 comments on commit 3589eae

Please sign in to comment.