📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 13:07:50
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
ondram
/
ci-detector
/
src
✏️
Editing: 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); } }
💾 Save Changes
❌ Cancel