Completed
Branch master (876946)
by Bart
10:28
created
Security/ShibbolethAuthenticationListenerFactory.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -31,6 +31,10 @@  discard block
 block discarded – undo
31 31
             ->end();
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $id
36
+     * @param string $userProvider
37
+     */
34 38
     protected function createAuthenticationProvider(ContainerBuilder $container, $id, $userProvider)
35 39
     {
36 40
         $providerId = 'security.authentication.provider.' . $this->key . '.' . $id;
@@ -41,6 +45,10 @@  discard block
 block discarded – undo
41 45
         return $providerId;
42 46
     }
43 47
 
48
+    /**
49
+     * @param string $id
50
+     * @param string $defaultEntryPoint
51
+     */
44 52
     protected function createEntryPoint(ContainerBuilder $container, $id, $defaultEntryPoint)
45 53
     {
46 54
         if (null !== $defaultEntryPoint) {
@@ -51,6 +59,9 @@  discard block
 block discarded – undo
51 59
         return $entryPointId;
52 60
     }
53 61
 
62
+    /**
63
+     * @param string $id
64
+     */
54 65
     protected function createListener(ContainerBuilder $container, $id, $defaultRoles)
55 66
     {
56 67
         $listenerId = 'security.authentication.listener.' . $this->key . '.' . $id;
Please login to merge, or discard this patch.