13 lines
260 B
PHP
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;
|
|
}
|
|
}
|