Given a number and an object with min and max properties, return true if the number lies within the given range (inclusive).
isInRange(4, array('min' => 0, 'max' => 5 )) ➞ true
isInRange(4, array('min' => 4, 'max' => 5 )) ➞ true
isInRange(4, array('min' => 6, 'max' => 10 )) ➞ false
isInRange(5, array('min' => 5, 'max' => 5 )) ➞ truemin <= max is always true.