diff -ru src/Symfony/Component/Config/Definition/Builder/NumericNodeDefinition.php src/Symfony/Component/Config/Definition/Builder/NumericNodeDefinition.php --- src/Symfony/Component/Config/Definition/Builder/NumericNodeDefinition.php 2020-09-09 06:26:17.805312224 +0000 +++ src/Symfony/Component/Config/Definition/Builder/NumericNodeDefinition.php 2020-09-09 06:26:20.848246987 +0000 @@ -40,7 +40,7 @@ public function max($max) { if (isset($this->min) && $this->min > $max) { - throw new \InvalidArgumentException(sprintf('You cannot define a max(%s) as you already have a min(%s)', $max, $this->min)); + throw new \InvalidArgumentException(sprintf('You cannot define a max(%s) as you already have a min(%s).', $max, $this->min)); } $this->max = $max; @@ -59,7 +59,7 @@ public function min($min) { if (isset($this->max) && $this->max < $min) { - throw new \InvalidArgumentException(sprintf('You cannot define a min(%s) as you already have a max(%s)', $min, $this->max)); + throw new \InvalidArgumentException(sprintf('You cannot define a min(%s) as you already have a max(%s).', $min, $this->max)); } $this->min = $min;