StackFormation\Profile\Manager::getEnvVarsFromProfile PHP Method

getEnvVarsFromProfile() public method

public getEnvVarsFromProfile ( $profile )
    public function getEnvVarsFromProfile($profile)
    {
        $tmp = [];
        foreach ($this->credentialProvider->getEnvVarsForProfile($profile) as $var => $value) {
            $tmp[] = "{$var}={$value}";
        }
        return $tmp;
    }