src/Type/IntEnumType.php
<?php
namespace Gdbots\Pbjc\Type;
final class IntEnumType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function isNumeric()
{
return true;
}
/**
* {@inheritdoc}
*/
public function getMin()
{
return 0;
}
/**
* {@inheritdoc}
*/
public function getMax()
{
return 65535;
}
}