소스 검색

merged branch stewe/2.0 (PR #2109)

Commits
-------

cd40ed4 Added missing method to HTTP Digest entry point

Discussion
----------

Added missing method to HTTP Digest entry point

Re-submitting to 2.0 branch as it is a bugfix, thanks!
Fabien Potencier 14 년 전
부모
커밋
c5541dc206
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;
+    }
 }