@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | /** |
73 | 73 | * Who is this email going to |
74 | 74 | * |
75 | - * @return array The recipients of the email |
|
75 | + * @return string The recipients of the email |
|
76 | 76 | */ |
77 | 77 | public function getToAddresses() |
78 | 78 | { |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | /** |
83 | 83 | * Who is this email going to (CC) |
84 | 84 | * |
85 | - * @return array The recipients of the email |
|
85 | + * @return string The recipients of the email |
|
86 | 86 | */ |
87 | 87 | public function getCCAddresses() |
88 | 88 | { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | /** |
93 | 93 | * Who is this email going to (BCC) |
94 | 94 | * |
95 | - * @return array The recipients of the email |
|
95 | + * @return string The recipients of the email |
|
96 | 96 | */ |
97 | 97 | public function getBCCAddresses() |
98 | 98 | { |
@@ -90,7 +90,7 @@ |
||
90 | 90 | * We need the ability to obtain the user's unhashed plain text password to allow for it to be sent |
91 | 91 | * to the correct backend which will hash it |
92 | 92 | * |
93 | - * @return boolean|string The current password |
|
93 | + * @return boolean The current password |
|
94 | 94 | */ |
95 | 95 | public function getPassword() |
96 | 96 | { |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | /** |
141 | 141 | * Get the data table for Pending Users |
142 | 142 | * |
143 | - * @return boolean|\Data\DataTable The Pending User Data Table |
|
143 | + * @return boolean The Pending User Data Table |
|
144 | 144 | */ |
145 | 145 | private function getPendingUserDataTable() |
146 | 146 | { |
@@ -213,6 +213,9 @@ discard block |
||
213 | 213 | return new SQLUser($users[0], $this); |
214 | 214 | } |
215 | 215 | |
216 | + /** |
|
217 | + * @param string $dataTableName |
|
218 | + */ |
|
216 | 219 | private function getDataByFilter($dataTableName, $filter, $select, $top, $skip, $orderby) |
217 | 220 | { |
218 | 221 | $dataTable = $this->getDataTable($dataTableName); |
@@ -278,6 +281,9 @@ discard block |
||
278 | 281 | return $dataTable->count(); |
279 | 282 | } |
280 | 283 | |
284 | + /** |
|
285 | + * @param \Data\Filter $filter |
|
286 | + */ |
|
281 | 287 | private function searchPendingUsers($filter, $select, $top, $skip, $orderby) |
282 | 288 | { |
283 | 289 | $userDataTable = $this->getPendingUserDataTable(); |
@@ -113,6 +113,9 @@ discard block |
||
113 | 113 | throw new \Exception('No such table '.$name); |
114 | 114 | } |
115 | 115 | |
116 | + /** |
|
117 | + * @param string $tablename |
|
118 | + */ |
|
116 | 119 | function read($tablename, $where = false, $select = '*', $count = false, $skip = false, $sort = false) |
117 | 120 | { |
118 | 121 | if($select === false) |
@@ -158,6 +161,9 @@ discard block |
||
158 | 161 | return $ret; |
159 | 162 | } |
160 | 163 | |
164 | + /** |
|
165 | + * @param string $tablename |
|
166 | + */ |
|
161 | 167 | function update($tablename, $where, $data) |
162 | 168 | { |
163 | 169 | $set = array(); |
@@ -180,6 +186,9 @@ discard block |
||
180 | 186 | return true; |
181 | 187 | } |
182 | 188 | |
189 | + /** |
|
190 | + * @param string $tablename |
|
191 | + */ |
|
183 | 192 | function create($tablename, $data) |
184 | 193 | { |
185 | 194 | $set = array(); |
@@ -203,6 +212,9 @@ discard block |
||
203 | 212 | return true; |
204 | 213 | } |
205 | 214 | |
215 | + /** |
|
216 | + * @param string $tablename |
|
217 | + */ |
|
206 | 218 | function delete($tablename, $where) |
207 | 219 | { |
208 | 220 | $sql = "DELETE FROM $tablename WHERE $where"; |
@@ -253,10 +253,10 @@ |
||
253 | 253 | * Get an array of Auth\PendingUser from a filtered set |
254 | 254 | * |
255 | 255 | * @param Data\Filter|boolean $filter The filter conditions or false to retreive all |
256 | - * @param array|boolean $select The user fields to obtain or false to obtain all |
|
257 | - * @param integer|boolean $top The number of users to obtain or false to obtain all |
|
258 | - * @param integer|boolean $skip The number of users to skip or false to skip none |
|
259 | - * @param array|boolean $orderby The field to sort by and the method to sort or false to not sort |
|
256 | + * @param boolean $select The user fields to obtain or false to obtain all |
|
257 | + * @param boolean $top The number of users to obtain or false to obtain all |
|
258 | + * @param boolean $skip The number of users to skip or false to skip none |
|
259 | + * @param boolean $orderby The field to sort by and the method to sort or false to not sort |
|
260 | 260 | * @param string|boolean $methodName The AuthMethod if information is desired only from a particular Auth\Authenticator |
261 | 261 | * |
262 | 262 | * @return array|boolean An array of Auth\PendingUser objects or false if no pending users were found |
@@ -28,12 +28,18 @@ |
||
28 | 28 | return substr($haystack, 0, strlen($needle)) === $needle; |
29 | 29 | } |
30 | 30 | |
31 | + /** |
|
32 | + * @param string $string |
|
33 | + */ |
|
31 | 34 | protected function filterIsFunction($string) |
32 | 35 | { |
33 | 36 | return (self::str_startswith($string, 'substringof') || self::str_startswith($string, 'contains') || |
34 | 37 | self::str_startswith($string, 'indexof')); |
35 | 38 | } |
36 | 39 | |
40 | + /** |
|
41 | + * @param string $op |
|
42 | + */ |
|
37 | 43 | protected function odataOpToStd($op) |
38 | 44 | { |
39 | 45 | switch($op) |
@@ -22,6 +22,9 @@ discard block |
||
22 | 22 | $this->ldapObj = $this->initializeFromArray($data); |
23 | 23 | } |
24 | 24 | |
25 | + /** |
|
26 | + * @param string $dn |
|
27 | + */ |
|
25 | 28 | private function initializeFromDN($dn) |
26 | 29 | { |
27 | 30 | $filter = new \Data\Filter("dn eq $dn"); |
@@ -93,7 +96,7 @@ discard block |
||
93 | 96 | * |
94 | 97 | * @param string $fieldName The name of the field to retrieve |
95 | 98 | * |
96 | - * @return mixed string the value of the field |
|
99 | + * @return string string the value of the field |
|
97 | 100 | */ |
98 | 101 | protected function getFieldSingleValue($fieldName) |
99 | 102 | { |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | /** |
141 | 141 | * Return an instance to the \LDAP\LDAPServer object instance |
142 | 142 | * |
143 | - * @param boolean $bind_write Should we be able to write to the server? |
|
143 | + * @param boolean $bindWrite Should we be able to write to the server? |
|
144 | 144 | * |
145 | 145 | * @return \LDAP\LDAPServer|false The server instance if the binding was successful, otherwise false |
146 | 146 | * |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | |
310 | 310 | |
311 | 311 | /** |
312 | - * @param boolean|\Data\Filter $filter The filter to user when reading users |
|
312 | + * @param \Data\Filter $filter The filter to user when reading users |
|
313 | 313 | * @param boolean|array $select The fields to return |
314 | 314 | * @param boolean|integer $top The number of records to return |
315 | 315 | * @param boolean|integer $skip The number of records to skip |
@@ -6,7 +6,6 @@ discard block |
||
6 | 6 | * @author Chris Wright |
7 | 7 | * @version 2.0 |
8 | 8 | * @param string $subject The subject string |
9 | - * @param bool $dn Treat subject as a DN if TRUE |
|
10 | 9 | * @param string|array $ignore Set of characters to leave untouched |
11 | 10 | * @return string The escaped string |
12 | 11 | */ |
@@ -216,7 +215,7 @@ discard block |
||
216 | 215 | /** |
217 | 216 | * Get the LDAP filter represented by the passed object |
218 | 217 | * |
219 | - * @param boolean|string|\Data\Filter $filter The fiter to use |
|
218 | + * @param boolean $filter The fiter to use |
|
220 | 219 | * |
221 | 220 | * @return string The filter in LDAP format |
222 | 221 | */ |