php-helpers/src/helpers.php

8 lines
121 B
PHP

<?php
if (!function_exists('env')) {
function env(string $name): ?string
{
return $_ENV[$name];
}
}