mageekguy\atoum\asserters\integer::__get PHP Method

__get() public method

public __get ( $property )
    public function __get($property)
    {
        switch (strtolower($property)) {
            case 'iszero':
                return $this->isZero();
            default:
                return parent::__get($property);
        }
    }