diff --git a/src/Psalm/Internal/Type/TypeParser.php b/src/Psalm/Internal/Type/TypeParser.php index 698685fc3..4560aa645 100644 --- a/src/Psalm/Internal/Type/TypeParser.php +++ b/src/Psalm/Internal/Type/TypeParser.php @@ -864,7 +864,9 @@ class TypeParser } if (is_int($min_bound) && is_int($max_bound) && $min_bound > $max_bound) { - throw new TypeParseTreeException("Min bound can't be greater than max bound, int<" . $min_bound . "," . $max_bound . "> given"); + throw new TypeParseTreeException( + "Min bound can't be greater than max bound, int<" . $min_bound . "," . $max_bound . "> given" + ); } return new TIntRange($min_bound, $max_bound);