Completed
Push — master ( 22e084...619942 )
by Damian
09:10
created
src/Security/Security.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -616,7 +616,7 @@
 block discarded – undo
616 616
      * Combine the given forms into a formset with a tabbed interface
617 617
      *
618 618
      * @param array|Form[] $forms
619
-     * @return string
619
+     * @return DBHTMLText
620 620
      */
621 621
     protected function generateLoginFormSet($forms)
622 622
     {
Please login to merge, or discard this patch.
src/Security/RememberLoginHash.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -84,11 +84,17 @@
 block discarded – undo
84 84
      */
85 85
     private $token = null;
86 86
 
87
+    /**
88
+     * @return string
89
+     */
87 90
     public function getToken()
88 91
     {
89 92
         return $this->token;
90 93
     }
91 94
 
95
+    /**
96
+     * @param string $token
97
+     */
92 98
     public function setToken($token)
93 99
     {
94 100
         $this->token = $token;
Please login to merge, or discard this patch.