Files
apimacro/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php
2024-05-07 12:17:25 +02: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();
}