php-helpers/src/helpers.php

9 lines
121 B
PHP
Raw Normal View History

2019-05-21 12:36:46 +01:00
<?php
2019-05-21 12:37:38 +01:00
if (!function_exists('env')) {
function env(string $name): ?string
{
return $_ENV[$name];
}
}