You appear to be a bot. Output may be restricted
Description
Wrapper for intval Setting intval as the callback was stating an improper number of arguments, this avoids that.
Usage
$int = EDD_Register_Meta::intval_wrapper( $value );
Parameters
- $value
- ( int ) required – The value to sanitize.
Returns
int The value sanitiezed to be an int.
Source
File name: easy-digital-downloads/includes/class-edd-register-meta.php
Lines:
1 to 3 of 3
public function intval_wrapper( $value ) { return intval( $value ); }