Devise\Support\Config\EnvironmentFileManager::__construct PHP Method

__construct() public method

Create a new settings manager
public __construct ( Framework $Framework, $envFile = null )
$Framework Devise\Support\Framework
    public function __construct(Framework $Framework, $envFile = null)
    {
        $this->files = $Framework->File;
        $this->basePath = $Framework->Container->basePath();
        $this->envFile = $envFile ?: $this->basePath . '/.env';
    }