Parkour\Functor\Lower::invoke PHP Method

invoke() public method

Tells if the first value is lower than the second.
public invoke ( mixed $first, mixed $second ) : boolean
$first mixed First value.
$second mixed Second value.
return boolean Result.
    public function invoke($first, $second)
    {
        return $first < $second;
    }
Lower