소스 검색

Added missing method to HTTP Digest entry point

Stefano Sala 14 년 전
부모
커밋
cd40ed43a3
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php

+ 10 - 0
src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php

@@ -61,4 +61,14 @@ class DigestAuthenticationEntryPoint implements AuthenticationEntryPointInterfac
 
         return $response;
     }
+
+    public function getKey()
+    {
+        return $this->key;
+    }
+
+    public function getRealmName()
+    {
+        return $this->realmName;
+    }
 }