<?php
declare(strict_types=1);
namespace DotenvParser;
interface ParserInterface
{
/**
* Parse content into an entry array.
*
* @param string $content
*
* @throws DotenvExceptionInvalidFileException
*
* @return DotenvParserEntry[]
*/
public function parse(string $content);
}