@@ -7,6 +7,9 @@ |
||
7 | 7 | { |
8 | 8 | protected $types = array('xlsx', 'xls', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/vnd.ms-excel'); |
9 | 9 | |
10 | + /** |
|
11 | + * @param integer $row |
|
12 | + */ |
|
10 | 13 | protected function setRowFromArray(&$sheat, $row, $array, $count = 0) |
11 | 14 | { |
12 | 15 | if($count === 0) |
@@ -233,7 +233,7 @@ discard block |
||
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 |
||
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 | { |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | } |
330 | 330 | |
331 | 331 | /** |
332 | - * @param boolean|\Data\Filter $filter The filter to user when reading users |
|
332 | + * @param \Flipside\Data\Filter $filter The filter to user when reading users |
|
333 | 333 | * @param boolean|array $select The fields to return |
334 | 334 | * @param boolean|integer $top The number of records to return |
335 | 335 | * @param boolean|integer $skip The number of records to skip |
@@ -73,7 +73,7 @@ discard block |
||
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 | { |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | } |
282 | 282 | |
283 | 283 | /** |
284 | - * @param \Data\Filter $filter The filter to read with |
|
284 | + * @param \Flipside\Data\Filter $filter The filter to read with |
|
285 | 285 | * @param boolean|array $select The fields to read |
286 | 286 | * @param boolean|integer $top The number of entities to read |
287 | 287 | * @param boolean|integer $skip The number of entities to skip |