src/Type/BigIntType.php
<?php
namespace Gdbots\Pbjc\Type;
use Gdbots\Pbj\WellKnown\BigNumber;
final class BigIntType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function getDefault()
{
return new BigNumber(0);
}
/**
* {@inheritdoc}
*/
public function isNumeric()
{
return true;
}
}