ApacheAdapter::get( string $name )

Get an environment variable, if it exists.


Description

This is intentionally not implemented, since this adapter exists only as a means to overwrite existing apache environment variables.


Parameters

$name

(string) (Required)


Return

(PhpOptionOption)


Source

File: vendor/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php

    public function get($name)
    {
        return None::create();
    }