Completed
Push — old-stable ( 5b2b84...1e6113 )
by
unknown
04:10
created
lib/plugins/auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      * @param   string  $user    Username
184 184
      * @param   string  $pass    Cleartext Password
185 185
      * @param   bool    $sticky  Cookie should not expire
186
-     * @return  bool             true on successful auth
186
+     * @return  boolean|null             true on successful auth
187 187
      */
188 188
     public function trustExternal($user, $pass, $sticky = false) {
189 189
         /* some example:
Please login to merge, or discard this patch.
lib/plugins/authplain/auth.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      * @author  Andreas Gohr <[email protected]>
83 83
      * @param string $user
84 84
      * @param bool $requireGroups  (optional) ignored by this plugin, grps info always supplied
85
-     * @return array|false
85
+     * @return string
86 86
      */
87 87
     public function getUserData($user, $requireGroups=true) {
88 88
         if($this->users === null) $this->_loadUserData();
@@ -380,6 +380,9 @@  discard block
 block discarded – undo
380 380
         return $users;
381 381
     }
382 382
 
383
+    /**
384
+     * @param string $line
385
+     */
383 386
     protected function _splitUserData($line){
384 387
         // due to a bug in PCRE 6.6, preg_split will fail with the regex we use here
385 388
         // refer github issues 877 & 885
Please login to merge, or discard this patch.
inc/Form/DropdownElement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      *                                  )
38 38
      *                 )
39 39
      *
40
-     * @param null|array $options
40
+     * @param string $options
41 41
      * @return $this|array
42 42
      */
43 43
     public function options($options = null) {
Please login to merge, or discard this patch.
lib/plugins/authpdo/auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -410,7 +410,7 @@
 block discarded – undo
410 410
      * Return a count of the number of user which meet $filter criteria
411 411
      *
412 412
      * @param  array $filter array of field/pattern pairs, empty array for no filter
413
-     * @return int
413
+     * @return boolean
414 414
      */
415 415
     public function getUserCount($filter = array()) {
416 416
         if(is_null($filter)) $filter = array();
Please login to merge, or discard this patch.