* @license http://www.apache.org/licenses/LICENSE-2.0 * @package Tests\Utilities */ final class GetKeyUtility { /** * @return string */ public static function get(): string { $result = Dotenv::createImmutable(dirname(__DIR__, 2))->load(); return $result['EPG_SERVICE_KEY'] ?? ''; } }