ok

Mini Shell

Direktori : /proc/thread-self/root/home2/selectio/www/fms-worksuite/vendor/ondram/ci-detector/src/
Upload File :
Current File : //proc/thread-self/root/home2/selectio/www/fms-worksuite/vendor/ondram/ci-detector/src/Env.php

<?php declare(strict_types=1);

namespace 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);
    }
}

Zerion Mini Shell 1.0