@@ -24,6 +24,9 @@ |
||
24 | 24 | } |
25 | 25 | } |
26 | 26 | |
27 | + /** |
|
28 | + * @param string $param |
|
29 | + */ |
|
27 | 30 | private function getParamFromArrayIfSet($array, $param, $default = null) |
28 | 31 | { |
29 | 32 | if(isset($array[$param])) |
@@ -78,6 +78,9 @@ discard block |
||
78 | 78 | $this->loader->addPath($dir, $namespace); |
79 | 79 | } |
80 | 80 | |
81 | + /** |
|
82 | + * @param string $name |
|
83 | + */ |
|
81 | 84 | public function setTemplateName($name) |
82 | 85 | { |
83 | 86 | $this->templateName = $name; |
@@ -112,7 +115,6 @@ discard block |
||
112 | 115 | * Add a JavaScript file from a set of files known to the framework |
113 | 116 | * |
114 | 117 | * @param string $jsFileID the ID of the JS file |
115 | - * @param boolean $async Can the JS file be loaded asynchronously? |
|
116 | 118 | */ |
117 | 119 | public function addWellKnownJS($jsFileID) |
118 | 120 | { |
@@ -6,7 +6,6 @@ |
||
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 | */ |
@@ -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 |