@@ -47,7 +47,6 @@ |
||
| 47 | 47 | * @param string $atts |
| 48 | 48 | * @param string $css_class |
| 49 | 49 | * @param string $anchor_text |
| 50 | - * @param string $link_text |
|
| 51 | 50 | * |
| 52 | 51 | * @return string If no article information exists, original tooltip. Otherwise, modified! |
| 53 | 52 | */ |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * @param string $name The key name (will be prefixed). |
| 53 | 53 | * @param mixed $default The default value if not found (Default: null) |
| 54 | 54 | * |
| 55 | - * @return mixed The value or $default if not found. |
|
| 55 | + * @return string The value or $default if not found. |
|
| 56 | 56 | */ |
| 57 | 57 | public static function _SERVER( $name, $default = null ) { |
| 58 | 58 | return self::get( $_SERVER, $name, $default ); |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * |
| 127 | 127 | * @param mixed $value The value to return from the closure. |
| 128 | 128 | * |
| 129 | - * @return Closure The closure with the $value bound. |
|
| 129 | + * @return \Closure The closure with the $value bound. |
|
| 130 | 130 | */ |
| 131 | 131 | public static function _return( $value ) { |
| 132 | 132 | return function() use ( $value ) { return $value; }; |