Skip to content

Commit 294adde

Browse files
authored
Merge pull request #10 from enygma/get-single-content
allow for the pull of a single value using getContent on the Parser class
2 parents 3589eae + f36470a commit 294adde

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Parser.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,11 @@ private function parseKeyValue($raw_line)
234234
*
235235
* @return array The .env contents
236236
*/
237-
public function getContent()
237+
public function getContent($keyName = null)
238238
{
239+
if (!is_null($keyName)) {
240+
return (array_key_exists($keyName, $this->lines)) ? $this->lines[$keyName] : null;
241+
}
239242
return $this->lines;
240243
}
241244
}

0 commit comments

Comments
 (0)