public static function isNumeric($value, $strict = true)
    {
        if (! is_numeric($value)) {
            if ($strict) {
                throw new InvalidArgumentException('The value passed must be a number');