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

__get() public method

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