123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace Symfony\Component\Config\Definition;
- use Symfony\Component\Config\Definition\Exception\InvalidTypeException;
- class IntegerNode extends NumericNode
- {
-
- protected function validateType($value)
- {
- if (!\is_int($value)) {
- $ex = new InvalidTypeException(sprintf('Invalid type for path "%s". Expected int, but got %s.', $this->getPath(), \gettype($value)));
- if ($hint = $this->getInfo()) {
- $ex->addHint($hint);
- }
- $ex->setPath($this->getPath());
- throw $ex;
- }
- }
- }
|