Bladeren bron

Added missing method to HTTP Digest entry point

Stefano Sala 14 jaren geleden
bovenliggende
commit
cd40ed43a3
1 gewijzigde bestanden met toevoegingen van 10 en 0 verwijderingen
  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;
+    }
 }