mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\XmlRpc\Value;
|
|
|
|
use Zend\XmlRpc\Exception;
|
|
|
|
class Integer extends AbstractScalar
|
|
{
|
|
/**
|
|
* Set the value of an integer native type
|
|
*
|
|
* @param int $value
|
|
* @throws Exception\ValueException
|
|
*/
|
|
public function __construct($value)
|
|
{
|
|
if ($value > PHP_INT_MAX) {
|
|
throw new Exception\ValueException('Overlong integer given');
|
|
}
|
|
|
|
$this->type = self::XMLRPC_TYPE_INTEGER;
|
|
$this->value = (int) $value; // Make sure this value is integer
|
|
}
|
|
|
|
/**
|
|
* Return the value of this object, convert the XML-RPC native integer value into a PHP integer
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|