golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/ondram/ci-detector/src
⬆️ Go Up
Upload
File/Folder
Size
Actions
Ci
-
Del
OK
CiDetector.php
2.77 KB
Del
OK
CiDetectorInterface.php
630 B
Del
OK
Env.php
455 B
Del
OK
Exception
-
Del
OK
TrinaryLogic.php
1.83 KB
Del
OK
Edit: 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