Add TExternalFile
parent
5335c41548
commit
97ba16a962
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace jrosset\EnvReader;
|
||||
|
||||
/**
|
||||
* Trait for config based on an external file
|
||||
*/
|
||||
trait TExternalFile {
|
||||
/**
|
||||
* Get the external config file path
|
||||
*
|
||||
* @return string The config file path
|
||||
*/
|
||||
protected abstract function getConfigFilePath (): string;
|
||||
}
|
Loading…
Reference in New Issue