Loader::clearEnvironmentVariable( string $name )

Clear an environment variable.


Description

This method only expects names in normal form.


Parameters

$name

(Required)


Return

(void)


Source

File: vendor/vlucas/phpdotenv/src/Loader.php

    public function clearEnvironmentVariable($name)
    {
        $this->envVariables->clear($name);
    }