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

Retrieves the nameId
public get_nameid ( ) : string
Результат string
Пример #1
0
 public function testReturnNameId()
 {
     $xml = file_get_contents(TEST_ROOT . '/data/responses/response1.xml.base64');
     $response = new OneLogin_Saml_Response($this->_settings, $xml);
     $this->assertEquals('*****@*****.**', $response->getNameId());
     $this->assertEquals('*****@*****.**', $response->get_nameid());
 }