mageekguy\atoum\asserters\adapter::__get PHP Méthode

__get() public méthode

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