torrentpier-lts/library/Zend/I18n/Validator/Int.php

44 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
2023-04-01 09:03:34 +03:00
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\I18n\Validator;
2023-04-01 09:03:34 +03:00
/**
* Stub class for backwards compatibility.
*
* Since PHP 7 adds "int" as a reserved keyword, we can no longer have a class
* named that and retain PHP 7 compatibility. The original class has been
* renamed to "IsInt", and this class is now an extension of it. It raises an
* E_USER_DEPRECATED to warn users to migrate.
*
* @deprecated
*/
class Int extends IsInt
{
/**
* Constructor for the integer validator
*
* @param array|Traversable $options
* @throws Exception\ExtensionNotLoadedException if ext/intl is not present
*/
public function __construct($options = array())
{
2023-04-01 09:03:34 +03:00
trigger_error(
sprintf(
'The class %s has been deprecated; please use %s\\IsInt',
__CLASS__,
__NAMESPACE__
2023-04-01 09:03:34 +03:00
),
E_USER_DEPRECATED
);
parent::__construct($options);
}
}