Completed
Pull Request — 0.2.x (#14)
by
unknown
35:21 queued 16:59
created
Controller/SsoAuthenticationController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * 
13
-     * @param type $request
13
+     * @param Request $request
14 14
      * @return \Symfony\Component\HttpFoundation\JsonResponse
15 15
      * @throws type
16 16
      */
Please login to merge, or discard this patch.
Krtv/Bundle/SingleSignOnServiceProviderBundle/Security/Http/UriSigner.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@
 block discarded – undo
71 71
         return $this->computeHash($this->buildUrl($url, $params)) === $hash;
72 72
     }
73 73
 
74
+    /**
75
+     * @param string $uri
76
+     */
74 77
     private function computeHash($uri)
75 78
     {
76 79
         return urlencode(base64_encode(hash_hmac('sha256', $uri, $this->secret, true)));
Please login to merge, or discard this patch.