Completed
Push — v2.0.0-alpha3-branch ( a0dd21 )
by Dominik
09:50
created
DependencyInjection/Compiler/RegisterMappingsPass.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -33,6 +33,12 @@
 block discarded – undo
33 33
     private $enabledParameter;
34 34
     private $fallbackManagerParameter;
35 35
 
36
+    /**
37
+     * @param Definition $driver
38
+     * @param string $driverPattern
39
+     * @param string $enabledParameter
40
+     * @param string $fallbackManagerParameter
41
+     */
36 42
     public function __construct($driver, $driverPattern, $namespaces, $enabledParameter, $fallbackManagerParameter)
37 43
     {
38 44
         $this->driver = $driver;
Please login to merge, or discard this patch.
EventListener/AuthenticationListener.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
     private $loginManager;
25 25
     private $firewallName;
26 26
 
27
+    /**
28
+     * @param string $firewallName
29
+     */
27 30
     public function __construct(LoginManagerInterface $loginManager, $firewallName)
28 31
     {
29 32
         $this->loginManager = $loginManager;
Please login to merge, or discard this patch.
Mailer/TwigSwiftMailer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      * @param UserInterface $user
94 94
      * @param $confirmationUrl
95 95
      * @param $toEmail
96
-     * @return bool
96
+     * @return boolean|null
97 97
      */
98 98
     public function sendUpdateEmailConfirmation(UserInterface $user, $confirmationUrl, $toEmail)
99 99
     {
Please login to merge, or discard this patch.
Propel/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      *
109 109
      * Implements SecurityUserInterface
110 110
      *
111
-     * @return array The roles
111
+     * @return string[] The roles
112 112
      */
113 113
     public function getRoles()
114 114
     {
Please login to merge, or discard this patch.
Security/LoginManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -76,6 +76,9 @@
 block discarded – undo
76 76
         $this->tokenStorage->setToken($token);
77 77
     }
78 78
 
79
+    /**
80
+     * @param string $firewall
81
+     */
79 82
     protected function createToken($firewall, UserInterface $user)
80 83
     {
81 84
         return new UsernamePasswordToken($user, null, $firewall, $user->getRoles());
Please login to merge, or discard this patch.