| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Validator/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Validator/IntUtils.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Validator;
use Laminas\I18n\Validator\IsInt;
class IntUtils extends IsInt implements ValidatorInterface
{
/**
* @var string[]
*/
protected $messageTemplates = [
self::INVALID => "Invalid type given. String or integer expected",
self::NOT_INT => "'%value%' does not appear to be an integer"
];
}