Преглед на файлове

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