for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: Barnso
* Date: 4/07/2017
* Time: 12:58 AM
*/
namespace AlgoWeb\xsdTypes;
* The type xsd:long represents an integer between -9223372036854775808 and 9223372036854775807. An xsd:long is a
* sequence of digits, optionally preceded by a + or - sign. Leading zeros are permitted, but decimal points are not.
* @package AlgoWeb\xsdTypes
class xsLong extends xsInteger
{
* Construct
*
* @param mixed $value
public function __construct($value)
parent::__construct($value);
$this->setMaxInclusive(9223372036854775807);
$this->setMinInclusive(-9223372036854775808);
}