Add TExternalFile

2.x
Julien Rosset 3 years ago
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…
Cancel
Save