@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | /** |
42 | 42 | * The name the user should be displayed as |
43 | 43 | * |
44 | - * @return boolean|string The name the user should be displayed as |
|
44 | + * @return boolean The name the user should be displayed as |
|
45 | 45 | */ |
46 | 46 | public function getDisplayName() |
47 | 47 | { |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | /** |
52 | 52 | * The given (or first) name for the user |
53 | 53 | * |
54 | - * @return boolean|string The user's first name |
|
54 | + * @return boolean The user's first name |
|
55 | 55 | */ |
56 | 56 | public function getGivenName() |
57 | 57 | { |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * The email address for the user |
63 | 63 | * |
64 | - * @return boolean|string The user's email address |
|
64 | + * @return boolean The user's email address |
|
65 | 65 | */ |
66 | 66 | public function getEmail() |
67 | 67 | { |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | /** |
72 | 72 | * The user ID for the user |
73 | 73 | * |
74 | - * @return boolean|string The user's ID or username |
|
74 | + * @return boolean The user's ID or username |
|
75 | 75 | */ |
76 | 76 | public function getUid() |
77 | 77 | { |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | /** |
82 | 82 | * The photo for the user |
83 | 83 | * |
84 | - * @return boolean|string The user's photo as a binary string |
|
84 | + * @return boolean The user's photo as a binary string |
|
85 | 85 | */ |
86 | 86 | public function getPhoto() |
87 | 87 | { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * The phone number for the user |
93 | 93 | * |
94 | - * @return boolean|string The user's phone number |
|
94 | + * @return boolean The user's phone number |
|
95 | 95 | */ |
96 | 96 | public function getPhoneNumber() |
97 | 97 | { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | /** |
102 | 102 | * The organziation for the user |
103 | 103 | * |
104 | - * @return boolean|string The user's organization |
|
104 | + * @return boolean The user's organization |
|
105 | 105 | */ |
106 | 106 | public function getOrganization() |
107 | 107 | { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | /** |
112 | 112 | * The list of titles for the user |
113 | 113 | * |
114 | - * @return boolean|array The user's title(s) in short format |
|
114 | + * @return boolean The user's title(s) in short format |
|
115 | 115 | */ |
116 | 116 | public function getTitles() |
117 | 117 | { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | /** |
122 | 122 | * The list of titles for the user |
123 | 123 | * |
124 | - * @return boolean|array The user's title(s) in user friendly strings |
|
124 | + * @return boolean The user's title(s) in user friendly strings |
|
125 | 125 | * |
126 | 126 | * @SuppressWarnings("StaticAccess") |
127 | 127 | */ |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | /** |
160 | 160 | * The state the user's mailing address is in |
161 | 161 | * |
162 | - * @return boolean|string The user's state from their mailing address |
|
162 | + * @return boolean The user's state from their mailing address |
|
163 | 163 | */ |
164 | 164 | public function getState() |
165 | 165 | { |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | /** |
170 | 170 | * The city the user's mailing address is in |
171 | 171 | * |
172 | - * @return boolean|string The user's city from their mailing address |
|
172 | + * @return boolean The user's city from their mailing address |
|
173 | 173 | */ |
174 | 174 | public function getCity() |
175 | 175 | { |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | /** |
180 | 180 | * The last name for the user |
181 | 181 | * |
182 | - * @return boolean|string The user's last name |
|
182 | + * @return boolean The user's last name |
|
183 | 183 | */ |
184 | 184 | public function getLastName() |
185 | 185 | { |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | /** |
190 | 190 | * The nick name for the user |
191 | 191 | * |
192 | - * @return boolean|string The user's nick name |
|
192 | + * @return boolean The user's nick name |
|
193 | 193 | */ |
194 | 194 | public function getNickName() |
195 | 195 | { |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | /** |
200 | 200 | * The street address for the user |
201 | 201 | * |
202 | - * @return boolean|string The user's street address |
|
202 | + * @return boolean The user's street address |
|
203 | 203 | */ |
204 | 204 | public function getAddress() |
205 | 205 | { |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | /** |
210 | 210 | * The postal (zip) code for the user's mailing address |
211 | 211 | * |
212 | - * @return boolean|string The user's postal code |
|
212 | + * @return boolean The user's postal code |
|
213 | 213 | */ |
214 | 214 | public function getPostalCode() |
215 | 215 | { |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | /** |
220 | 220 | * The country the user's mailing address is in |
221 | 221 | * |
222 | - * @return boolean|string The user's country from their mailing address |
|
222 | + * @return boolean The user's country from their mailing address |
|
223 | 223 | */ |
224 | 224 | public function getCountry() |
225 | 225 | { |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | * |
232 | 232 | * This is the same as Areas in Flipside speak. |
233 | 233 | * |
234 | - * @return boolean|array The user's orgnaiational units |
|
234 | + * @return boolean The user's orgnaiational units |
|
235 | 235 | */ |
236 | 236 | public function getOrganizationUnits() |
237 | 237 | { |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | /** |
242 | 242 | * The supplemental login types that the user can use to login |
243 | 243 | * |
244 | - * @return boolean|array The user's login providers |
|
244 | + * @return boolean The user's login providers |
|
245 | 245 | */ |
246 | 246 | public function getLoginProviders() |
247 | 247 | { |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | /** |
252 | 252 | * The groups the user is a part of |
253 | 253 | * |
254 | - * @return boolean|array The user's Auth\Group structures |
|
254 | + * @return boolean The user's Auth\Group structures |
|
255 | 255 | */ |
256 | 256 | public function getGroups() |
257 | 257 | { |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | * |
728 | 728 | * @param stdClass $data The user's new data |
729 | 729 | * |
730 | - * @return boolean true if the user's data was changed, false otherwise |
|
730 | + * @return boolean|null true if the user's data was changed, false otherwise |
|
731 | 731 | */ |
732 | 732 | public function editUser($data) |
733 | 733 | { |
@@ -754,7 +754,7 @@ discard block |
||
754 | 754 | /** |
755 | 755 | * Obtain the user's password reset hash |
756 | 756 | * |
757 | - * @return string|false A hash if available, false otherwise |
|
757 | + * @return boolean A hash if available, false otherwise |
|
758 | 758 | */ |
759 | 759 | public function getPasswordResetHash() |
760 | 760 | { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @param string $methodName The class name of the Authenticator to get the instance for |
62 | 62 | * |
63 | - * @return Auth\Authenticator|false The specified Authenticator class instance or false if it is not loaded |
|
63 | + * @return string The specified Authenticator class instance or false if it is not loaded |
|
64 | 64 | */ |
65 | 65 | public function getAuthenticator($methodName) |
66 | 66 | { |
@@ -276,11 +276,11 @@ discard block |
||
276 | 276 | * Get an array of Auth\PendingUser from a filtered set |
277 | 277 | * |
278 | 278 | * @param Data\Filter|boolean $filter The filter conditions or false to retreive all |
279 | - * @param array|boolean $methodName The user fields to obtain or false to obtain all |
|
280 | - * @param integer|boolean $top The number of users to obtain or false to obtain all |
|
281 | - * @param integer|boolean $skip The number of users to skip or false to skip none |
|
282 | - * @param array|boolean $orderby The field to sort by and the method to sort or false to not sort |
|
283 | - * @param string|boolean $methodName The AuthMethod if information is desired only from a particular Auth\Authenticator |
|
279 | + * @param boolean $methodName The user fields to obtain or false to obtain all |
|
280 | + * @param boolean $top The number of users to obtain or false to obtain all |
|
281 | + * @param boolean $skip The number of users to skip or false to skip none |
|
282 | + * @param boolean $orderby The field to sort by and the method to sort or false to not sort |
|
283 | + * @param boolean $methodName The AuthMethod if information is desired only from a particular Auth\Authenticator |
|
284 | 284 | * |
285 | 285 | * @return array|boolean An array of Auth\PendingUser objects or false if no pending users were found |
286 | 286 | */ |
@@ -210,7 +210,7 @@ |
||
210 | 210 | /** |
211 | 211 | * Get the LDAP filter represented by the passed object |
212 | 212 | * |
213 | - * @param boolean|string|\Data\Filter $filter The fiter to use |
|
213 | + * @param boolean $filter The fiter to use |
|
214 | 214 | * |
215 | 215 | * @return string The filter in LDAP format |
216 | 216 | */ |
@@ -183,7 +183,10 @@ |
||
183 | 183 | $count = count($this->children); |
184 | 184 | for($i = 0; $i < $count; $i++) |
185 | 185 | { |
186 | - if(!is_object($this->children[$i])) continue; |
|
186 | + if(!is_object($this->children[$i])) |
|
187 | + { |
|
188 | + continue; |
|
189 | + } |
|
187 | 190 | if(strstr($this->children[$i]->var1, $substr) !== false || |
188 | 191 | strstr($this->children[$i]->var2, $substr) !== false) |
189 | 192 | { |