IntegerNode.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Config\Definition;
  11. use Symfony\Component\Config\Definition\Exception\InvalidTypeException;
  12. /**
  13. * This node represents an integer value in the config tree.
  14. *
  15. * @author Jeanmonod David <david.jeanmonod@gmail.com>
  16. */
  17. class IntegerNode extends NumericNode
  18. {
  19. /**
  20. * {@inheritdoc}
  21. */
  22. protected function validateType($value)
  23. {
  24. if (!\is_int($value)) {
  25. $ex = new InvalidTypeException(sprintf('Invalid type for path "%s". Expected "int", but got "%s".', $this->getPath(), get_debug_type($value)));
  26. if ($hint = $this->getInfo()) {
  27. $ex->addHint($hint);
  28. }
  29. $ex->setPath($this->getPath());
  30. throw $ex;
  31. }
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. protected function getValidPlaceholderTypes(): array
  37. {
  38. return ['int'];
  39. }
  40. }