Explorar o código

Added missing method to HTTP Digest entry point

Stefano Sala %!s(int64=14) %!d(string=hai) anos
pai
achega
cd40ed43a3

+ 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;
+    }
 }