@@ -7,7 +7,6 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * Get Application instance |
| 9 | 9 | * |
| 10 | - * @param \System\File $file |
|
| 11 | 10 | * @return \System\Application |
| 12 | 11 | */ |
| 13 | 12 | function app() |
@@ -57,6 +57,7 @@ |
||
| 57 | 57 | /** |
| 58 | 58 | * To add addresses or attachments easily to the object |
| 59 | 59 | * |
| 60 | + * @param string $add |
|
| 60 | 61 | * @return void |
| 61 | 62 | */ |
| 62 | 63 | private function add($input, $add) |
@@ -260,7 +260,7 @@ |
||
| 260 | 260 | * Get value from $_SERVER by the given key |
| 261 | 261 | * |
| 262 | 262 | * @param string $key |
| 263 | - * @return mixed |
|
| 263 | + * @return string |
|
| 264 | 264 | */ |
| 265 | 265 | public function server($key) |
| 266 | 266 | { |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | 'middleware' => ['Authenticate', 'Permissions'] |
| 9 | 9 | ]; |
| 10 | 10 | |
| 11 | -$app->route->group($adminOptions, function ($route) { |
|
| 11 | +$app->route->group($adminOptions, function($route) { |
|
| 12 | 12 | $route->add('/', 'Home'); |
| 13 | 13 | $route->add('/home', 'Home'); |
| 14 | 14 | }); |