SimpleSAML_AuthMemCookie::getUsernameAttr PHP Method

getUsernameAttr() public method

This function retrieves the name of the attribute which contains the username from the configuration.
public getUsernameAttr ( ) : string
return string The name of the attribute which contains the username.
    public function getUsernameAttr()
    {
        $usernameAttr = $this->amcConfig->getString('username', null);
        return $usernameAttr;
    }