Skip to content

Commit 1350cc3

Browse files
Fixed method signature
1 parent 8517c40 commit 1350cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parser/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function parse(string $content)
3838
*
3939
* @return \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Entry[],string>
4040
*/
41-
private function process(array $entries)
41+
private static function process(array $entries)
4242
{
4343
return \array_reduce($entries, static function (Result $result, string $raw) {
4444
return $result->flatMap(static function (array $entries) use ($raw) {

0 commit comments

Comments
 (0)