Completed
Push — master ( f22a46...046041 )
by Patrick
02:27 queued 12s
created
Auth/LDAPAuthenticator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      *
234 234
      * @param \stdClass	$data The AuthData from the session
235 235
      *
236
-     * @return null|\Auth\LDAPUser The LDAPUser represented by this data
236
+     * @return LDAPUser The LDAPUser represented by this data
237 237
      */
238 238
     public function getUser($data)
239 239
     {
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
      *
246 246
      * @param string $name The Group's name
247 247
      *
248
-     * @return null|\Auth\LDAPGroup The LDAPGroup represented by the name or null if not found
248
+     * @return null|LDAPGroup The LDAPGroup represented by the name or null if not found
249 249
      */
250 250
     public function getGroupByName($name)
251 251
     {
Please login to merge, or discard this patch.
Auth/SQLAuthenticator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     /**
74 74
      * Get the data table for Pending Users
75 75
      *
76
-     * @return boolean|\Data\DataTable The Pending User Data Table
76
+     * @return boolean The Pending User Data Table
77 77
      */
78 78
     private function getPendingUserDataTable()
79 79
     {
Please login to merge, or discard this patch.
Email/DBEmail.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -44,8 +44,16 @@
 block discarded – undo
44 44
         return parent::getSubject();
45 45
     }
46 46
 
47
+    /**
48
+     * @return string
49
+     */
47 50
     public abstract function getSubstituteVars();
48 51
 
52
+    /**
53
+     * @param boolean $html
54
+     *
55
+     * @return string
56
+     */
49 57
     protected function getRawBodyText($html)
50 58
     {
51 59
         if(isset($this->dbData['body']))
Please login to merge, or discard this patch.