<?php
declare(strict_types=1);
namespace DotenvStore;
interface StoreInterface
{
/**
* Read the content of the environment file(s).
*
* @throws DotenvExceptionInvalidEncodingException|DotenvExceptionInvalidPathException
*
* @return string
*/
public function read();
}