Skip to content
Snippets Groups Projects
Commit 48244e10 authored by Luke Woodward's avatar Luke Woodward
Browse files

Remove absint calls for abs and intval

parent dd109e89
Branches
No related tags found
No related merge requests found
......@@ -455,7 +455,7 @@ class WP_Object_Cache {
}
// Save to Redis
$expiration = absint( $expiration );
$expiration = abs( intval( $expiration ) );
if ( $expiration ) {
$result = $this->parse_predis_response( $this->redis->setex( $derived_key, $expiration, $this->prepare_value_for_redis( $value ) ) );
} else {
......@@ -500,7 +500,7 @@ class WP_Object_Cache {
* @return bool Returns TRUE on success or FALSE on failure.
*/
public function flush( $delay = 0 ) {
$delay = absint( $delay );
$delay = abs( intval( $delay ) );
if ( $delay ) {
sleep( $delay );
}
......@@ -633,7 +633,7 @@ class WP_Object_Cache {
}
// Save to Redis
$expiration = absint( $expiration );
$expiration = abs( intval( $expiration ) );
if ( $expiration ) {
$result = $this->parse_predis_response( $this->redis->setex( $derived_key, $expiration, $this->prepare_value_for_redis( $value ) ) );
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment