You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PhpEnvReader/src/EnvReader/IExternalConfigFile.php

15 lines
287 B
PHP

<?php
namespace jrosset\EnvReader;
/**
* Interface for external file based configurations
*/
interface IExternalConfigFile {
/**
* Get the external config file path
*
* @return string The config file path
*/
public function getConfigFilePath (): string;
}