DotenvVariables::__construct( DotenvEnvironmentAdapterAdapterInterface[] $adapters, bool $immutable )

Create a new dotenv environment variables instance.


Parameters

$adapters

(DotenvEnvironmentAdapterAdapterInterface[]) (Required)

$immutable

(bool) (Required)


Return

(void)


Source

File: vendor/vlucas/phpdotenv/src/Environment/DotenvVariables.php

    public function __construct(array $adapters, $immutable)
    {
        $this->adapters = $adapters;
        parent::__construct($immutable);
    }