Plum\Plum\Converter\IntegerConverter::convert PHP Method

convert() public method

Converts the item into an integer value.
public convert ( mixed $item ) : integer
$item mixed
return integer
    public function convert($item)
    {
        return intval($item);
    }
IntegerConverter