Files
Document-Management-System-…/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php
2021-04-07 19:25:18 -04:00

16 lines
247 B
PHP

<?php
namespace Dotenv\Store;
interface StoreInterface
{
/**
* Read the content of the environment file(s).
*
* @throws \Dotenv\Exception\InvalidPathException
*
* @return string
*/
public function read();
}