@@ -32,7 +32,6 @@ |
||
32 | 32 | /** |
33 | 33 | * Start session. |
34 | 34 | * |
35 | - * @param array $options to configure options. |
|
36 | 35 | */ |
37 | 36 | public function start() |
38 | 37 | { |
@@ -240,7 +240,7 @@ |
||
240 | 240 | * @param string $key to check if it exists in the $_SERVER variable |
241 | 241 | * @param string $default value to return as default |
242 | 242 | * |
243 | - * @return mixed |
|
243 | + * @return string |
|
244 | 244 | */ |
245 | 245 | public function getServer($key, $default = null) |
246 | 246 | { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * Set a variable which will be exposed to the template files during render. |
76 | 76 | * |
77 | 77 | * @param string $which variable to set value of. |
78 | - * @param mixed $value of the variable. |
|
78 | + * @param string $value of the variable. |
|
79 | 79 | * |
80 | 80 | * @return $this |
81 | 81 | */ |
@@ -172,7 +172,6 @@ discard block |
||
172 | 172 | /** |
173 | 173 | * Set/clear a key/value from the configuration file. |
174 | 174 | * |
175 | - * @param string $uri to add. |
|
176 | 175 | * |
177 | 176 | * @return $this |
178 | 177 | */ |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * Read configuration from file or array, if a file, first check in |
23 | 23 | * ANAX_APP_PATH/config and then in ANAX_INSTALL_PATH/config. |
24 | 24 | * |
25 | - * @param array/string $what is an array with key/value config options |
|
25 | + * @param string $what is an array with key/value config options |
|
26 | 26 | * or a file to be included which returns such |
27 | 27 | * an array. |
28 | 28 | * |