2023-03-11 12:04:29 +03:00
|
|
|
<?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)
|
2023-03-11 12:04:29 +03:00
|
|
|
* @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
|
2023-03-11 12:04:29 +03:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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__,
|
2023-03-11 12:04:29 +03:00
|
|
|
__NAMESPACE__
|
2023-04-01 09:03:34 +03:00
|
|
|
),
|
|
|
|
E_USER_DEPRECATED
|
|
|
|
);
|
2023-03-11 12:04:29 +03:00
|
|
|
|
|
|
|
parent::__construct($options);
|
|
|
|
}
|
|
|
|
}
|