Files
abcParser/src/Domain/Atoms/UnsignedIntegerAtom.php
2018-04-24 21:11:23 -04:00

13 lines
260 B
PHP

<?php
namespace XaiCorp\AbcParser\Domain\Atoms;
use Enzyme\Axiom\Atoms\IntegerAtom;
class UnsignedIntegerAtom extends IntegerAtom
{
protected function isInvalidOrFloat($value)
{
return parent::isInvalidOrFloat($value) || $value <= 0;
}
}