Sven\FlexEnv\Env::__construct PHP Метод

__construct() публичный Метод

Instantiate the Env.
public __construct ( string $path )
$path string
    public function __construct($path)
    {
        if (!file_exists($path)) {
            file_put_contents($path, '');
        }
        $this->path = $path;
        $this->previous = file_get_contents($path);
    }