### Eclipse Workspace Patch 1.0
#P wordpress-tests
|
|
|
|
| 3132 | 3132 | * |
| 3133 | 3133 | * @since 2.5.0 |
| 3134 | 3134 | * |
| 3135 | | * @param mixed $maybeint Data you wish to have convered to an nonnegative integer |
| 3136 | | * @return int An nonnegative integer |
| | 3135 | * @param scalar|array $maybeint Data to be converted to an integer greate than -1 |
| | 3136 | * @return int A non-negative integer |
| 3137 | 3137 | */ |
| 3138 | 3138 | function absint( $maybeint ) { |
| 3139 | | return abs( intval( $maybeint ) ); |
| | 3139 | return abs( (int) $maybeint ); |
| 3140 | 3140 | } |
| 3141 | 3141 | |
| 3142 | 3142 | /** |