ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux host57.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Current Path : /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/ondram/ci-detector/src/ |
| Current File : //opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/ondram/ci-detector/src/Env.php |
<?php
declare (strict_types=1);
namespace RectorPrefix202411\OndraM\CiDetector;
/**
* Encapsulate access to the environment variables
*/
class Env
{
/**
* @return string|false Environment variable value or false if the variable does not exist
*/
public function get(string $name)
{
return \getenv($name);
}
public function getString(string $name) : string
{
return (string) $this->get($name);
}
}